0

私の要件は、Google API を使用せずに 2 つの場所の間の距離をマイル単位で求めることです。次のようにコードを追加しました。

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 マイルです。

この違いの解決策を教えてください。

4

0 に答える 0