3

以下代码仅返回前10 个地址的坐标。但我需要超过 100 个才能将其存储在数据库中。地理编码器有限制吗?我该怎么做 ?

 for(int i=0;i<count;i++)
{

    CLGeocoder *geoCode = [[CLGeocoder alloc] init];

    [geoCode geocodeAddressString:strcity completionHandler:^(NSArray *placemarks, NSError *error)
     {
         if (!error)
         {
             CLPlacemark *place = [placemarks objectAtIndex:0];
             CLLocation *location = place.location;
             CLLocationCoordinate2D coord = location.coordinate;

             NSString *tempLati=[[NSString alloc]initWithFormat:@"%g",coord.latitude];
             NSString *tempLongi=[[NSString alloc]initWithFormat:@"%g",coord.longitude];




             [objCountries.countryLatitude addObject:tempLati];
             [objCountries.countryLongitude addObject:tempLongi];

             [geoCode cancelGeocode];
         }
     }];


}
4

1 回答 1

2

iOS 会限制 CLGeocoder 请求,它会有所不同,但通常一次允许 50 个左右的请求。时间段未知。您可以做的是将其编码为一次对一个块进行地理编码,并在两者之间留出足够的停顿。一旦读取,您应该尽可能存储结果,这样您就不会再次请求相同的地理编码。请注意此处的 CLGeocoder 文档:CLGeocoder。如果地理编码服务被滥用,Apple 可以限制您甚至暂停您的开发者帐户。

于 2012-10-09T07:46:57.063 回答