Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图找到两个 GPS 位置之间的距离,我得到了使用 MKReverseGeocoder 的方法......现在,我如何追踪这两个位置之间的路径.. 建议将不胜感激.. 在此先感谢..
对于从两个位置的距离,只需使用波纹管来获取距离
CLLocationDistance distance = [yourCurrentLocation distanceFromLocation:yourDestinationLocation];
这里 yourCurrentLocation 和 yourDestinationLocation 是 CLLocation 变量,它返回从接收器位置到指定位置的距离(以米为单位)。
我希望这对你有帮助.. :)