如何在iOS 6中使用Apple地图查找两个位置之间的距离?

时间:2013-06-22 07:27:01

标签: ios6 cllocation cllocationdistance

我的要求是在不使用Google API的情况下找到两个位置之间的距离。 我添加了代码:

CLLocation* first = [[CLLocation alloc] initWithLatitude:35.779702 longitude:-78.641746];
CLLocation* second = [[CLLocation alloc] initWithLatitude:40.723779 longitude:-73.991289];

CLLocationDistance distance = [first distanceFromLocation:second];
NSLog(@"distance  in Miles ::%f",distance*0.00062137);

它的距离是424.151386,但是当我在iPad办理登机手续时它的距离为497英里。

请给我解决这个差异。

0 个答案:

没有答案