我想放置工具以显示用户选择的两个地方之间的距离。

是否有任何可用的示例源代码/服务?

提前致谢。

最佳答案

CoreLocation Framework提供了计算两点之间的距离(以米为单位)的功能:

- (CLLocationDistance)getDistanceFrom:(const CLLocation *)location

您可以使用纬度和经度初始化CLLocation对象:
- (id)initWithLatitude:(CLLocationDegrees)latitude longitude:(CLLocationDegrees)longitude

10-06 02:32