Hello,

Hello,

Sorry about the previous botched post.

I am creating an overlay from a KML file like this

var map = new GMap2(document.getElementById("map"));
var gx = new GGeoXml("http://something.com/
FlowMonitorPts_20080915.kmz");
map.addOverlay(gx);

It works fine. I can see the overlay with the markers.
I have added a listener like this

GEvent.addListener(map, "click", function(marker, point)
{
        if (marker)
        {

        }
});

Now I want to get some user defined attributes associated with the
marker (e.g. name, xcoord, ycoord, etc.)
How would I go about doing that?

Thanks for your help.



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