containsLocationPoly method
Checks whether point is inside polygon on the sphere.
Implementation
bool containsLocationPoly(Point<double> point, List<Point<double>> polygon,
{bool geodesic = false}) =>
PolyUtils.containsLocationPoly(point, polygon, geodesic: geodesic);