我有InfoWindow的問題。我有一個通過JSON檢索數據的ajax函數,但當打開另一個時,我無法自動關閉InfoWindow。 我的代碼是這樣的:關閉InfoWindow之前打開另一個
var mapOptions = {
center: new google.maps.LatLng(44.49423583832911, 11.346244544982937),
zoom: 13,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById("mappa_locali"),mapOptions);
$.ajax({
type:'GET',
url:"locali_json.php"+urlz,
success:function(data){
var json = JSON.parse(data);
for (var i=0; i<json.length; i++) {
point = new google.maps.LatLng(json[i].latitudine,json[i].longitudine);
var infowindow = new google.maps.InfoWindow;
infowindow.setContent('<a href="./dettaglioLocale.php?id_loc='+json[i].id_locale+'">'+json[i].nome_locale+'</a><br>'+json[i].address);
addMarkerz(point,infowindow);
}
}
})
}
function addMarkerz(point,infowindow) {
position: point,
map: map
});
google.maps.event.addListener(marker,'mouseover',infoCallback(infowindow, marker));
markers.push(marker);
infos.push(infowindow);
}
function infoCallback(infowindow, marker) {
return function() {
infowindow.close();
infowindow.open(map, marker);
};
}
有誰知道哪裏錯下降?或者你有什麼建議嗎?
可能重複[更改谷歌地圖再使用單一的信息窗口,而不是創建多個](http://stackoverflow.com/questions/11984258/change-google-maps-to-re-use-single -infowindow-rather-creating-multiple) – geocodezip
http://stackoverflow.com/questions/7796318/google-maps-api-opening-a-single-infowindow也可能是http://stackoverflow.com/questions/2223574/google-maps-auto-close-open-infowindows/8126982#8126982 – geocodezip
沒有任何建議可以解決我的問題? – Stefania