Hello,
I use google maps marker. I have array of info to be shown with info window. I have tried like this,
markers = xml.documentElement.getElementsByTagName("marker");
for (i = 0; i < markers.length; i++)
{
info = markers[i].getAttribute("info");
GEvent.addListener(markers[i], "click", function(info) {
this.openInfoWindowHtml(info);
});
}
openInfoWindowHtml(info)
must be displayed for each and every marker. I need to get the info window displayed.
thanks v.srinath