I would like to detect that a google.maps.LatLng is inside a google.maps.Polygon.
How can I do that ?
Cheers,
|
I would like to detect that a How can I do that ? Cheers,
| |||
|
feedback
|
|
Other solution: https://github.com/tparkin/Google-Maps-Point-in-Polygon | |||
|
feedback
|
|
I used this algorithm to detect that the point is inside the polygon : http://alienryderflex.com/polygon/ I added a new method
| |||
feedback
|
|
Google provides their own implementation within the geometry library, which I haven't checked, but presumably covers the edge cases discussed in the other answers. See the containsLocation method described here. Note that you will have to import the geometry library explicitly, as it is not in the base map API | |||
|
feedback
|