我有一个问题,我想在地图上标记一个点(我知道如何做,它的工作原理)。然后我想在InfoWindow中写下关于这一点的所有内容。我该怎么办?
我的添加标记功能:
function placeMarker(location) {
if (marker != null) {
removeMarker(marker);
}
marker = new google.maps.Marker({
position: location,
title: "aaaa",
map: map
});
google.maps.event.addListener(marker, 'click', function () {
infowindow.open(map, marker);
});
infowindow = new google.maps.InfoWindow({
content: 'Hello world'
});
map.setCenter(location);
setLatLng(location.lat, location.lng, place);
}
我用它:
google.maps.event.addListener(map, 'click', function (event) {
placeMarker(event.latLng);
});
在任何地方我都可以找到EVENT对象的内容以及它具有哪些属性?