On Nov 14, 11:53 am, jerome <[EMAIL PROTECTED]> wrote: > > yes this is my issue, when I trig the click event, I never see the > marker infowindow opened, even if I click on a marker ! > this seems to be due to the "overlay" parameter not properly passed to > the handler.
The map click handler doesn't process marker clicks. It's the GGeoXml which sets up marker clicks, and that's opaque. > ok thanks, sorry for the confusion, I'm using GGeoXml indeed. > regarding performances, do you have an idea of the faster parser > between GGeoXml and EGeoXml ? No idea at all. GGeoXml sends a request to Google's server, which gets the data, parses it and returns the object; EGeoXml gets the data directly and parses it in the client. I guess they're about the same, but since EGeoXml uses client processing and internet connection rather than server processing and high-speed connections, it's likely to be slightly slower. Client-side methods are subject to the Javascript cross-domain restriction. Andrew --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
