为啥将 CLGeocoder 与“地标”数组一起使用?

Posted

技术标签:

【中文标题】为啥将 CLGeocoder 与“地标”数组一起使用?【英文标题】:Why use CLGeocoder with an array of "placemarks"?为什么将 CLGeocoder 与“地标”数组一起使用? 【发布时间】:2016-08-06 18:02:11 【问题描述】:

在尝试使用 CLGeocoder 时,我从在线教程中得到了这个示例: https://www.appcoda.com/how-to-get-current-location-iphone-user/

- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation

    NSLog(@"didUpdateToLocation: %@", newLocation);
    CLLocation *currentLocation = newLocation;

    if (currentLocation != nil) 
        longitudeLabel.text = [NSString stringWithFormat:@"%.8f", currentLocation.coordinate.longitude];
        latitudeLabel.text = [NSString stringWithFormat:@"%.8f", currentLocation.coordinate.latitude];
    

    // Reverse Geocoding
    NSLog(@"Resolving the Address");
    [geocoder reverseGeocodeLocation:currentLocation completionHandler:^(NSArray *placemarks, NSError *error) 
        NSLog(@"Found placemarks: %@, error: %@", placemarks, error);
        if (error == nil && [placemarks count] > 0) 
            placemark = [placemarks lastObject];
            addressLabel.text = [NSString stringWithFormat:@"%@ %@\n%@ %@\n%@\n%@",
                                 placemark.subThoroughfare, placemark.thoroughfare,
                                 placemark.postalCode, placemark.locality,
                                 placemark.administrativeArea,
                                 placemark.country];
         else 
            NSLog(@"%@", error.debugDescription);
        
     ];


但是,我不太明白为什么在完成处理程序部分需要一个“地标”数组以及为什么我们应该使用“地标”的最后一个对象(我也看到人们使用第一个对象?)。

我已经通读了苹果文档,但在使用方面没有找到任何好的解释: https://developer.apple.com/library/ios/documentation/CoreLocation/Reference/CLGeocoder_class/

【问题讨论】:

【参考方案1】:

您正在对纬度/经度进行反向地理编码。它可能会产生多个地址。如果您获得多个并且不在乎使用哪个,则提取数组中的第一个或最后一个地标对象同样有效。

(大多数时候你可能只会得到一个匹配,在这种情况下,第一个和最后一个元素是相同的。)

【讨论】:

以上是关于为啥将 CLGeocoder 与“地标”数组一起使用?的主要内容,如果未能解决你的问题,请参考以下文章

CLGeocoder 曾经返回一个地标

测试 CLGeocoder geocodeAddressString 方法地标始终为零

当使用 CLGeocoder 的 ResreverseGeocodeLocation 但返回的地标为 nil 并且 kCLErrorDomain 错误 =8

为啥 CLGeocoder 在调用时会崩溃

在 iOS 中使用 CLGeocoder 进行转发地理编码,为某些位置的位置返回 null

如何将地点与 CLGeocoder 的结果相匹配?