You said "But all brackets are correctly closed.". This is not correct (you have an extra set of parentheses in the function definition):
google.maps.event.addListener(poly, 'click', (function(event, (poly, i)) {
return function() {
infowindow.open(map);
infowindow.setPosition(event.latLng);
}
})(poly, i));
The event
argument belongs to the returned function, and you only need closure on the polygon (poly
) and the loop index (i
):
google.maps.event.addListener(poly, 'click', (function (poly, i) {
return function (event) {
infowindow.setContent(""+i);
infowindow.setPosition(event.latLng);
infowindow.open(map);
};
})(poly, i));
updated fiddle
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…