fluttermap

I need to check the marker is inside the polygon on map in flutter


I create map, where as user can draw the boundaries(polygon) of his area, and give exact geo-location by placing pin(marker). but my problem is that when i create this before it check the marker is inside the polygon or not.

image description here


Solution

  • You can use point_in_polygon package and simply pass your point and point of polygon.

    Poly.isPointInPolygon(pointToCheckIfInPolygon, pointsOfPolygon)