我正在尝试查找如何自动关闭或/和关闭标记的信息窗口(谷歌地图)。
我处理了那个代码,但我不明白为什么 close 函数不会关闭 de infowindow。我的 Firefox 控制台上没有错误
这是代码,您的帮助将不胜感激
//Infowindow
google.maps.event.addListener(markers[i], 'click', function() {
/* the marker's content gets attached to the info-window: */
var info = new google.maps.InfoWindow({
content: this.content
});
info.close(); // IT DOES NOT CLOSE the open infowindow or all open
/* trigger the infobox's open function */
info.open(map,this); //This works
/* keep the handle, in order to close it on next click event */
//infos[0]=info;
});
非常感谢