“查找最近的”移动设备webapp的流程?
希望为移动 Web 应用程序实现“查找最近的”流程,该流程将根据用户当前位置自动选择表单中下拉列表中项目的最接近匹配项。
假设我们有列表中每个元素的纬度/经度,以及移动设备上的人员位置,那么找到最近项目的最佳方法是什么?我们将有大约 150-200 个可能的项目,并且希望最接近用户的一个,以便我们可以将其设置为默认值。
有没有一种方法可以在 JS 中有效地做到这一点,或者它更适合服务器端?
Looking to implement a "Find Nearest" process for a mobile web application that will auto select the closest match of an item in a dropdown list in a form based on the user's current location.
Assuming we have the lat/long for each element of our list, and the persons location from the mobile device, what is the best method to locate the closest item? We will have approx 150-200 possible items and want the one closest to the user so we can set it as the default.
Is there a means to efficiently do this in JS or would it be better suited to server side?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将需要一个循环来计算距离以及最近的距离。使用半正矢公式:
最好运行您自己的基准测试,以确定在服务器端或客户端执行此操作是否更好。
You'll need a loop to calculate distance and henceforth, the closest. Use the Haversine formula:
Better run your own benchmarks to find out if it would be better to do this server-side or client-side.