我的要求是在不使用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英里。
请给我解决这个差异。