containsLocationPoly method

bool containsLocationPoly(
  1. Point<double> point,
  2. List<Point<double>> polygon, {
  3. bool geodesic = false,
})

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);