> I was able to draw a polygon on map. I want to extract all the > addresses or LatLang with in that polygon.
The API doesn't provide any facilities to find all the addresses in a polygon. There are an infinite number of lat-long points within any polygon. Are you trying to search through your own data to see what is inside the polygon? Are you trying to find all the markers on your map that are within the polygon? Point-in-polygon is probably exactly what you need ; iterate through all your markers and test each one in turn. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.
