Hi there,

I am using Luke's markercluster.js (v3) to display XML points.
Sometimes happens that point
have same location, so I would like to open an info window over the
cluster and render the XML info.

I was able to do it into an alert call, but I would like to use the
google.maps.event.addListener
and the infowindow.open.
What I did so far is set a for loop into the ClusterIcon class

foo = ""
for(i=0; i < this.cluster_.markers_.length; i++) {

            foo = foo + this.cluster_.markers_[i].idx + " " +
this.cluster_.markers_[i].position + "\n"
}

alert(foo);

Any suggestions? Thank you, Giovanni

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" 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-js-api-v3?hl=en.

Reply via email to