isLocationOnEdge method

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

Whether point lies on polygon's edge (0.1m tolerance).

Implementation

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