我正在尝试这样做,以便有人点击地图,然后弹出一个 infoWindow 告诉他们 latlng。现在,只是想弄清楚如何让 infoWindow 出现。我在这里用标记发现了一个类似的问题并稍微编辑了函数,但我错过了一些我确定很简单的东西,我只是无法指出。这是代码:
function InfoWindow(location) {
if ( marker ) {
marker.setPosition(location);
} else {
marker = new google.maps.infoWindow({
position: location,
content: "sam"
});
}
}
google.maps.event.addListener(map, 'click', function(event) {
InfoWindow(event.latLng);
});
}
非常感谢帮助!谢谢