I am having trouble binding the click event listener to an array of polygons in Google Maps API v3 that is fetched using jQuery.getJSON().
Everything seems to work fine until I click on one of the polygons. The infowindows show up in the correct places (so, infoWindow.setPosition(event.latLng) seems to be working correctly), but ALWAYS show the title and description from the LAST polygon element in the array (ie, data[n]).
I tried the solution from this question Google Maps - Attaching InfoWindows to polygons in array and got the same results. My first though was that it may have to do with the timing of the jQuery.getJSON() response, but that doesn't make sense since all of the data is returned in a single request.
Any thoughts?
jQuery.getJSON('http://www.url.com', function(data){
for(var i in data){
var coords = getCoords(data[i]);
var polyOptions = {
path: coords,
title:data[i].name,
desc: data[i].desc,
// more style options, etc etc
map:map
};
// logging polyOptions shows correct title and desc here
var poly = new google.maps.Polygon(polyOptions);
poly.setMap(map);
google.maps.event.addListener(poly, 'click', function(event) {
var infoWindow = new google.maps.InfoWindow();
infoWindow.setContent("Information : " + poly.title);
infoWindow.setPosition(event.latLng);
infoWindow.open(map);
});
}// end for var i in data
}); // end get json for all polygons
inoperator to loop an array. Use an index instead. 2-Create your polygons in a separate function. – Marcelo Jan 24 at 15:57