我在使用infoWindows和Google Maps API v3时遇到了问题。 最初,我遇到了其他人在打开新的时关闭infoWindows的问题。 我想通过预先定义“infowindow”解决了这个问题。现在,当我点击一个新标记时它们会关闭,但内容是相同的。 我应该如何重新构建我的代码以确保每次都是正确的内容 - 并且在给定时间只打开一个infoWindow?
谢谢!
保
var allLatLngs = new Array();
var last = 0;
var infowindow;
function displayResults(start, count){
if(start === undefined){
start = last;
}
if(count === undefined){
count = 20;
}
jQuery.each(jsresults, function(index, value) {
if(index >= start && index < start+count){
var obj = jQuery.parseJSON(value);
$("#textresults").append(index + ": <strong>" + obj.name + "</strong> " + Math.round(obj.distanz*100)/100 + " km entfernt" + "<br/>");
var myLatlng = new google.maps.LatLng(obj.geo_lat, obj.geo_lon);
allLatLngs.push(myLatlng);
var contentString = '<strong>'+obj.name+'</strong>';
infowindow = new google.maps.InfoWindow({
content: contentString
});
var marker = new google.maps.Marker({
position: myLatlng,
//title:"Hello World!"
});
marker.setMap(map);
google.maps.event.addListener(marker, 'click', function() {
if (infowindow) { infowindow.close(map,marker); }
infowindow.open(map,marker);
});
}
});
last = start+count;
答案 0 :(得分:1)
<强>已更新强>
您正在致电
infowindow.open(map,marker);
在jQuery.each迭代中,因此,我认为它将调用迭代中的最后一项。 修改你的代码,以便在jQuery.each迭代中得到它。
var curItem = 1;
google.maps.event.addListener(aMarker, "click", function(idx, theContent) {
return function() {
alert(idx); //Should print 1 marker1, 2 for marker 2, to show it's ok.
//Your stuff...
if (infowindow) {
infowindow.close(map,marker);
}
infowindow.setContent(theContent);
infowindow.open(map,marker);
}
} (curItem++, contentString)
);
当你看到“return function()”时,我正在使用javascript closure。我刚刚将这个闭包用于其他东西。我已经摆脱了之前答案中的其他先前变化。