Google Maps Api v 3 +获取有关标记点的所有信息

时间:2011-06-23 15:09:42

标签: google-maps

我有一个问题,我想在地图上标记一个点(我知道如何做,它的工作原理)。然后我想在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对象的内容以及它具有哪些属性?

1 个答案:

答案 0 :(得分:2)

latLng是事件(当前)拥有的唯一属性。请参阅reference