我正在创建一个基于位置的iPhone App。
我有两个位置(他们的纬度和长度)。
一个位置固定在UIView的中心,如何显示相对于第一个位置的其他位置。
请提供代码(如果有)。
答案 0 :(得分:0)
如果您只是想找到两点之间的距离,那么您可以使用CoreLocation函数:
CLLocation *startLocation = [[CLLocation alloc] initWithLatitude:startLatitude longitude:startLongitude];
CLLocation *endLocation = [[CLLocation alloc] initWithLatitude:endLatitude longitude:endLongitude];
CLLocationDistance distanceMeters = [startLocation distanceFromLocation:endLocation];