如何找到两个地理点之间的距离?

编程入门 行业动态 更新时间:2024-10-24 16:28:30
本文介绍了如何找到两个地理点之间的距离?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 double distance; Location locationA = new Location("point A"); locationA.setLatitude(latA); locationA.setLongitude(lngA); Location locationB = new Location("point B"); locationB.setLatitude(latB); LocationB.setLongitude(lngB); distance = locationA.distanceTo(locationB);

上面的代码不起作用,我的距离是 0.0 公里?同样在位置类的构造函数中,字符串提供者是什么意思.在上面的代码中,我使用 PointA 和 PointB 作为提供者.

the above code is not working and i am getting 0.0 Km as distance? Also in the constructor of the location class, what does the string provider mean. In the above code i am using PointA and PointB as the providers.

为什么上面的代码不起作用?

why is the above code not working?

提前谢谢你.

LOGCAT05-09 17:48:56.144:信息/当前位置(1573):纬度 0.0 lng 0.005-09 17:48:56.155: 信息/检查位置 loc(1573): lat 54.4288665 lng 10.169366

LOGCAT 05-09 17:48:56.144: INFO/current loc(1573): lat 0.0 lng 0.0 05-09 17:48:56.155: INFO/checklocation loc(1573): lat 54.4288665 lng 10.169366

推荐答案

试试Location.distanceBetween(..)

更新:

如果您从 GeoPoint 获取纬度/经度,那么它们是微度数.您必须乘以 1e6.

If you are getting lat/lon from GeoPoint then they are in microdegrees. You must multiply by 1e6.

更多推荐

如何找到两个地理点之间的距离?

本文发布于:2023-07-27 23:14:17,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1225214.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:地理   距离   两个

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!