How to find closest marker leaflet.js(如何找到最近的标记leaflet.js)
问题描述
我想知道是否真的有某种方法可以使用 Leaflet.js 在我的位置附近找到标记.我想到的第一个想法是存储我的位置的 lat 和 lng,然后遍历一组 lat 和 lng 标记,将它们放在一个数组中,然后对该数组进行排序.我不确定这是否是一个不错的选择,因为如果您在地图上有一百万个标记需要一段时间.
I was wondering if there is actually some way to find markers near my position using leaflet.js. The first think to come to my head is to store lat and lng of my position and then iterate over an array of lat and lng markers placing them in an array an then sort that array. I am not sure if this is a good option because if you have a million markers in the map is going to take a while.
伪代码
var myLatLng = [34,56];
var markers = [[20,30],[10,20],[12,-100],[54,90],[-10, -20],[20,20]];
var closests = [];
function findNearestMarker (myPosition, nearestMarkers){
for(var i = 0; i < nearestMarkers.length){
if((nearestMarkers[i][0] - myPosition[0]) < 100 && (nearestMarkers[i][1] - myPosition[1]) < 100 ){
closests.push(nearestMarkers[i])
}
}
}
我实际上是从地图开始,不知道这么多方法,我也想在这个项目中使用开放的街道地图,但是,如果有人知道并使用谷歌地图或其他服务,我将受到欢迎.
I am actually starting with maps and dont know so many approaches, I will also like to use open street maps for this project, but, if someone know and aproach using google maps or another services it will be welcomed.
推荐答案
试试leaflet-knn,它进行最近邻查找:给定一个点和一堆其他点,它会找到最近的邻居(正如它在锡上所说的那样)
Try leaflet-knn, which does nearest-neighbor lookups: given a point and a bunch of other points, it finds the nearest neighbors (as it says on the tin)
这篇关于如何找到最近的标记leaflet.js的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何找到最近的标记leaflet.js
基础教程推荐
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01