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

how to find the distance between two geopoints?(如何找到两个地理点之间的距离?)
本文介绍了如何找到两个地理点之间的距离?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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.

这篇关于如何找到两个地理点之间的距离?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)
Crash on Google Play Pre-Launch Report: java.lang.NoSuchMethodError(Google Play发布前崩溃报告:java.lang.NoSuchMethodError)