在不使用Map的情况下显示相对于其他位置的位置

时间:2014-01-27 17:02:15

标签: ios iphone objective-c location

我正在创建一个基于位置的iPhone App。

我有两个位置(他们的纬度和长度)。

一个位置固定在UIView的中心,如何显示相对于第一个位置的其他位置。

请提供代码(如果有)。

1 个答案:

答案 0 :(得分:0)

如果您只是想找到两点之间的距离,那么您可以使用CoreLocation函数:

CLLocation *startLocation =  [[CLLocation alloc] initWithLatitude:startLatitude longitude:startLongitude];
CLLocation *endLocation = [[CLLocation alloc] initWithLatitude:endLatitude longitude:endLongitude];

CLLocationDistance distanceMeters = [startLocation distanceFromLocation:endLocation];