Hello.
I create a number of markers using marker manager.
var map = new GMap2(document.getElementById("map_canvas"));
var manager = new MarkerManager(map, managerOptions);
var point1 = ... // coordinates
var marker1 = new GMarker(point1);
manager.addMarker(marker1, 0);
var point2 = ... // coordinates
var marker2 = new GMarker(point2);
manager.addMarker(marker2, 0);

In manager contains a list of markers.
How to get a list of all markers, which are in the manager (or in the
map) and get to their coordinates?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" 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
-~----------~----~----~----~------~----~------~--~---

Reply via email to