0

我正在使用 MKReverseGeocoder 对纬度/经度地址进行反向地理编码。但是,我无法确定要设置哪个注释的字幕。为了进一步扩展,我在每个注释上调用反向地理编码来确定地址,然后我想将他们的字幕文本设置为他们的地址。我已经设法为第一个注释做到了,但我不确定如何为第二个注释做这件事。

这是我的代码:

- (void)loadAnnotations {
Annotation *annotation1 = [[Annotation alloc] initWithCoordinate:CLLocationCoordinate2DMake(a,b)];
annotation1.title = @"Anno1n";
CLLocation *annoe = [[CLLocation alloc] initWithLatitude:annotation1.coordinate.latitude longitude:annotation1.coordinate.longitude];
CLLocation *usrloc = [[CLLocation alloc] initWithLatitude:mapView.userLocation.coordinate.latitude longitude:mapView.userLocation.coordinate.longitude];
NSLog(@"%.2f km", [annoe distanceFromLocation:usrloc]/1000);
MKReverseGeocoder *geo = [[MKReverseGeocoder alloc] initWithCoordinate:annotation1.coordinate];
[geo setDelegate:self];
[geo start];
[mapView addAnnotation:annotation1];

Annotation *annotation2 = [[Annotation alloc] initWithCoordinate:CLLocationCoordinate2DMake(c,d)];
annotation2.title = @"Anno2";
geo = [[MKReverseGeocoder alloc] initWithCoordinate:annotation2.coordinate];
[geo start];
[mapView addAnnotation:annotation2];

}
- (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFindPlacemark:(MKPlacemark *)placemark {
NSArray *array = [[placemark addressDictionary] objectForKey:@"FormattedAddressLines"];
if (geocoder.coordinate.latitude == mapView.userLocation.coordinate.latitude && geocoder.coordinate.longitude) {
    mapView.userLocation.title = @"Current Location";
    mapView.userLocation.subtitle = [NSString stringWithFormat:@"%@ %@", [array objectAtIndex:0], [array objectAtIndex:1]];
}
else {
    Annotation *annot = (Annotation *)[[mapView annotations] objectAtIndex:1];
    [annot setSubtitle:[NSString stringWithFormat:@"%@ %@", [array objectAtIndex:0], [array objectAtIndex:1]]];
    //NSLog(@"%@", [placemark addressDictionary]);
}
}

请让我知道我该怎么做。

4

1 回答 1

0

Looping through your annotations and reverse geocoding each one is not recommended. There's a usage limit for the reverse geocoding service. Apple recommends developers should only call the reverse geocoding service when triggered by user action, like selecting the annotation.

http://developer.apple.com/library/ios/#documentation/MapKit/Reference/MKReverseGeocoder_Class/Reference/Reference.html%23//apple_ref/occ/cl/MKReverseGeocoder

于 2011-03-06T07:07:33.750 回答