两个GPS位置之间的距离,并跟踪它们之间的路径线(Distance between two GPS

2019-09-21 14:56发布

我试图找到两个GPS位置之间的距离,我提前了使用MKReverseGeocoder ......现在,我怎么能跟踪这两个位置..建议,将不胜感激之间的路径的方式..谢谢..

Answer 1:

并从两个位置的距离只是用波纹线获得距离

CLLocationDistance distance = [yourCurrentLocation distanceFromLocation:yourDestinationLocation];

这里yourCurrentLocation和yourDestinationLocation是CLLocation变量,它返回到指定的位置从接收器的位置的距离(以米为单位)。

我希望这对您有帮助.. :)



文章来源: Distance between two GPS locations and also trace a route line between them
标签: ios gps