Hi Expert,

I'm new in Google Maps API. I had created a polygon on my google map.
Is there any possible to extract all street name that covered inside
the polygon. Below is my code

var myCoordinates = [
new google.maps.LatLng(59.914171,10.741264),
new google.maps.LatLng(59.911610,10.737488),
new google.maps.LatLng(59.909265,10.741522),
new google.maps.LatLng(59.910233,10.746586),
new google.maps.LatLng(59.913654,10.751779),
new google.maps.LatLng(59.916021,10.745728)
];
var polyOptions = {
path: myCoordinates,
strokeColor: "#FF0000",
strokeOpacity: 0.8,
strokeWeight: 2,
fillColor: "#0000FF",
fillOpacity: 0.6
}
var it = new google.maps.Polygon(polyOptions);
it.setMap(map);


Any help are appreciated.
Thank you.

-- 
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.

Reply via email to