我使用此代码创建标记和单击标记后显示的信息窗口:
// latLng and map are created earlier in code
var marker = new google.maps.Marker({
position: latLng,
map: map
});
// contentString is just a string with content also created earlier
google.maps.event.addListener(marker, 'click', function(){
infowindow.setContent(contentString);
infowindow.open(map, marker);
});
这段代码产生的一切都很好,除了一件事,它没有在信息窗口的右上角显示关闭图标。
任何人都知道可能是什么问题?
如果有什么不同,我正在使用meteor.js
这就是我创建的方式InfoWindow
:
var infowindow = new google.maps.InfoWindow();