gpt4 book ai didi

javascript - 如何放大 Mapbox Leaflet 中的标记单击事件?

转载 作者:行者123 更新时间:2023-12-01 02:02:25 26 4
gpt4 key购买 nike

我想在单击标记时放大该标记。我正在使用 Mapbox 和传单。

我尝试过:

marker.on('click', function(e){
map.setView([e.lat, e.lng], 12);
});

但它给了我某种错误:

TypeError: t is null

我什至尝试过:

marker.on('click', function(e){
map.fitBounds(marker.getBounds());
});

最佳答案

要获取事件的纬度和经度,您必须使用 e.latlng: latlng reference 。使用这个:

marker.on('click', function(e){
map.setView(e.latlng, 13);
});

关于javascript - 如何放大 Mapbox Leaflet 中的标记单击事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29385063/

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