isLocationOnEdgeTolerance method

bool isLocationOnEdgeTolerance(
  1. Point<double> point,
  2. List<Point<double>> polygon,
  3. bool geodesic,
  4. double tolerance,
)

Whether point lies on polygon's edge within tolerance meters.

Implementation

bool isLocationOnEdgeTolerance(Point<double> point,
        List<Point<double>> polygon, bool geodesic, double tolerance) =>
    PolyUtils.isLocationOnEdgeTolerance(point, polygon, geodesic, tolerance);