使用html5测量特定位置和当前位置之间的距离

发布于 2024-11-08 06:00:03 字数 310 浏览 0 评论 0原文

正如标题所示。知道如何实现这一点吗?

一直在查看 http://www.html5archive.com /2010/12/04/geolocation-api-example-distance-tracking/ 一段时间并尝试修改该代码,但没有成功。

最初不需要自动刷新。

但基本功能应该是获取用户位置并告知用户与特定点之间的距离。

As the title suggests. Any idea how to accomplish that?

Been looking at http://www.html5archive.com/2010/12/04/geolocation-api-example-distance-tracking/ for a while and trying to modify that code, but with no luck.

It doesn't need to be auto refreshing initially.

But basic function should get user location and tell distance between the user and the specific point.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暮凉 2024-11-15 06:00:03

关键代码位于从您指定的页面链接的此页面上。我已将其转换为以下函数:

/** Extend Number object with method to convert numeric degrees to radians */
if (typeof Number.prototype.toRadians == 'undefined') {
    Number.prototype.toRadians = function() { return this * Math.PI / 180; };
}

function getDistance(lat1,lon1,lat2,lon2) {
    var R = 6371; // km
    var dLat = (lat2-lat1).toRadians();
    var dLon = (lon2-lon1).toRadians(); 
    var a = Math.sin(dLat/2) * Math.sin(dLat/2) +
            Math.cos(lat1.toRadians()) * Math.cos(lat2.toRadians()) * 
            Math.sin(dLon/2) * Math.sin(dLon/2); 
    var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a)); 
    return R * c;
}

您需要将特定的纬度和经度作为前两个参数传递给它,并将当前的纬度和经度作为后两个参数。

The key code is on this page linked from the one you specified. I've converted it to a function below:

/** Extend Number object with method to convert numeric degrees to radians */
if (typeof Number.prototype.toRadians == 'undefined') {
    Number.prototype.toRadians = function() { return this * Math.PI / 180; };
}

function getDistance(lat1,lon1,lat2,lon2) {
    var R = 6371; // km
    var dLat = (lat2-lat1).toRadians();
    var dLon = (lon2-lon1).toRadians(); 
    var a = Math.sin(dLat/2) * Math.sin(dLat/2) +
            Math.cos(lat1.toRadians()) * Math.cos(lat2.toRadians()) * 
            Math.sin(dLon/2) * Math.sin(dLon/2); 
    var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a)); 
    return R * c;
}

You need to pass it the specific lat and lon as the first two parameters, and the current lat and lon as the second two.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文