isLocationOnEdge static method

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

Same as {@link #isLocationOnEdge(Point, List, bool, double)} with a default tolerance of 0.1 meters.

Implementation

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