On 10 March 2012 14:51, naveen roy <[email protected]> wrote: > 3. Now i want to select one of the polygon from the loaded polygons and then > edit or delete that polygon alone.
Does no-one actually look through the documentation any more? Polygons support the click event (which is the obvious way to choose one) -- although you will probably want the map's click event as that automatically passes the polygon as an argument to the handler -- and they have an enableEditing() method. http://code.google.com/apis/maps/documentation/javascript/v2/reference.html#GPolygon.click http://code.google.com/apis/maps/documentation/javascript/v2/reference.html#GPolygon.enableEditing > Also how can we check which version of Google Map API i am using. For Version 2, it's held in G_API_VERSION. http://code.google.com/apis/maps/documentation/javascript/v2/reference.html#G_API_VERSION -- You received this message because you are subscribed to the Google Groups "Google Maps API V2" 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-api?hl=en.
