2011-07-13 19 views
4

私は緯度と経度を使用して距離をマイルで検索しようとしています。私は次の方法を持っています:計算距離iOS MapKit CLLocationを使用

- (void)locationManager:(CLLocationManager *)manager 
    didUpdateToLocation:(CLLocation *)newLocation 
      fromLocation:(CLLocation *)oldLocation 
{ 
    if(!newLocation) return; 

    if ((oldLocation.coordinate.latitude != newLocation.coordinate.latitude) && 
     (oldLocation.coordinate.longitude != newLocation.coordinate.longitude)) 
    { 



     CLLocation *loc1 = [[CLLocation alloc] initWithLatitude:oldLocation.coordinate.latitude longitude:oldLocation.coordinate.longitude]; 
     CLLocation *loc2 = [[CLLocation alloc] initWithLatitude:newLocation.coordinate.latitude longitude:newLocation.coordinate.latitude]; 

     CLLocationDistance distance = ([loc2 distanceFromLocation:loc1]) * 0.000621371192; 

     //distance = distance; 

     NSLog(@"Total Distance %f in miles",distance); 
    } 

} 

何らかの理由で、5678.32マイルのようなものが印刷されます。場所はほとんど静止していて、まったく動いていません。

+0

なぜ、あなたは0.000621371192を掛けますか? – Vladimir

+5

CLLocation * loc2 = [[CLLocation alloc] initWithLatitude:newLocation.coordinate。(!!!!!)緯度経度:newLocation.coordinate。(!!!!!)緯度]; – bealex

+1

マイルに1,609.344メートルあり、1/1609.344は0.000621371192237です。 – Tommy

答えて

5
CLLocation *loc2 = [[CLLocation alloc] initWithLatitude:newLocation.coordinate.(!!!!!)latitude longitude:newLocation.coordinate.(!!!!!)latitude]; 
+3

これには '。(!!!!!)'とは何ですか? –

+0

@IanDundasエラーを見るために見える位置:) – bealex

3

あなたは経度と緯度の両方のための新しい場所の緯度とLOC2を初期化されています

この行は:

CLLocation *loc2 = [[CLLocation alloc] initWithLatitude:newLocation.coordinate.latitude longitude:newLocation.coordinate.latitude]; 

は言う必要があります。

CLLocation *loc2 = [[CLLocation alloc] initWithLatitude:newLocation.coordinate.latitude longitude:newLocation.coordinate.longitude]; 

はそれが役に立てば幸い!