isLocationOnEdge static method

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

Same as isLocationOnEdge with a default tolerance of 0.1 meters.

Implementation

static bool isLocationOnEdge(
        Point<double> point, List<Point<double>> polygon, bool geodesic) =>
    isLocationOnEdgeTolerance(point, polygon, geodesic, _defaultTolerance);