Leaflet 折线 EventListener 查找单击的位置

leaflet polyline eventlistener find the position of click

提问人:lebanta 提问时间:8/17/2023 最后编辑:Jason Allerlebanta 更新时间:8/17/2023 访问量:25

问:

我使用传单作为地图。我创建了一条折线

var polylinePoints = [
[37.781814, -122.404740],
[37.781719, -122.404637],
[37.781489, -122.404949],
[37.780704, -122.403945],
[37.780012, -122.404827]];             
 var polyline = L.polyline(polylinePoints).addTo(map);

此外,我添加了 on()

polyline.on("click", function (e) {
etc etc etc
})

我希望当我单击折线时,找到单击事件的位置。其中 polylinePoints 的一个点介于两者之间。

请问我如何使用该活动?

谢谢

角度 事件 传单 映射 折线

评论


答: 暂无答案