2014-03-26 133 views
1

我正在通過Web服務和地理編碼接收緯度和經度列表,然後獲取完整地址。 問題是,一段時間後,它們變爲空,地理編碼器停止工作! 有人能幫助我嗎?Geocoder在一段時間後返回null

下面是我使用以獲取地址代碼:

-(void)getAddressArray:(void (^)(id response))completion{ 
for (int i=0; i<[favoritos count]; i++) { 

    double latitude = [[[favoritos valueForKey:@"latitude"] objectAtIndex:i] doubleValue]; 
    double longitude = [[[favoritos valueForKey:@"longitude"] objectAtIndex:i] doubleValue]; 
    CLLocationCoordinate2D location = CLLocationCoordinate2DMake(latitude, longitude); 
    CLLocation * locationAtual = [[CLLocation alloc]initWithLatitude:location.latitude longitude:location.longitude]; 
    CLGeocoder *geocoder = [[CLGeocoder alloc] init]; 

    [geocoder reverseGeocodeLocation:locationAtual completionHandler:^(NSArray *placemarks, NSError *error) { 
     NSDictionary *dicAddress; 

     CLPlacemark *place = [placemarks firstObject]; 

     if (placemarks) { 
      NSLog(@"%@",place.addressDictionary); 
      if ([place.addressDictionary valueForKey:@"Thoroughfare"] == [NSNull null] || ![place.addressDictionary valueForKey:@"Thoroughfare"]) { 
       dicAddress = @{@"id":[[favoritos objectAtIndex:i] valueForKey:@"id"],@"address":@"Endereço não encontrado!",@"complemento":[[favoritos objectAtIndex:i] valueForKey:@"references"],@"number":[[favoritos valueForKey:@"numero"] objectAtIndex:i],@"name":[[favoritos valueForKey:@"name"] objectAtIndex:i], @"latitude":[[favoritos valueForKey:@"latitude"] objectAtIndex:i], @"longitude":[[favoritos valueForKey:@"longitude"] objectAtIndex:i]}; 
      } 


      [address addObject:dicAddress]; 

      if ([address count] == [favoritos count]) 
       completion(address); 
     }  
}]; 
} 

謝謝!

回答

1

檢查傳入該塊的錯誤,可能是發送給很多請求並達到速率限制。

有速率限制reverseGeocodeLocation:completionHandler:

的地址解析請求的速率限制爲每個應用程序,在很短的時間內使拍過多 請求可能會導致一些請求到 失敗。當超過最大速率時,地理編碼器將具有值kCLErrorNetwork的錯誤 對象傳遞給完成處理程序。

+1

謝謝,我不知道這個速度。 –