isLocationOnPath method

bool isLocationOnPath(
  1. Point<double> point,
  2. List<Point<double>> polyline,
  3. bool geodesic
)

Whether point lies on polyline (0.1m tolerance).

Implementation

bool isLocationOnPath(
        Point<double> point, List<Point<double>> polyline, bool geodesic) =>
    PolyUtils.isLocationOnPath(point, polyline, geodesic);