I guess that you mean that you want to find the marker which is located
at GLatLng(-32.317322,-58.086090), if there is one. EGeoXml doesn't
index the markers by location, so you'll just have to search for it.

 var point = GLatLng(-32.317322,-58.086090);
 for (var i=0; i<exml.gmarkers.length; i++) {
   if (exml.gmarkers[i].getLatLng().equals(point)) {
     GEvent.trigger(exml.gmarkers[i],"click");
   }
 }

-- 
Mike Williams
http://econym.org.uk/gmap


--

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