gpt4 book ai didi

javascript - 拖动 map 时未获取当前位置

转载 作者:行者123 更新时间:2023-11-27 22:29:05 24 4
gpt4 key购买 nike

我想在拖动 map 时获取当前位置(纬度和经度)。

为此,我使用以下代码:

google.maps.event.addListener(map  , 'drag', function(event) {
addMarker(event.latLng.lat(), event.latLng.lng());
});

但不幸的是,事件中不包含 latlang 函数或属性。

event.constructor,event.hasownproperty...等等

但没有 event.latLng.lat()

最佳答案

你想把标记放在哪里?

例如,您可以通过这种方式获取 map 的中心:

google.maps.event.addListener(map, 'dragend', function() {
alert(map.getCenter());
});

这里是 reference of the Map class

关于javascript - 拖动 map 时未获取当前位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19722434/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com