CLGeocoder反向地理编码失败,错误域= NSURLErrorDomain Code = -1000 - [英] CLGeocoder reverse geocoding fails with Error Domain=NSURLErrorDomain Code=-1000 -

查看:803
本文介绍了CLGeocoder反向地理编码失败,错误域= NSURLErrorDomain Code = -1000 - 的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用CLLocation对象(内容例如纬度= 48.196169,经度= 11.620237),我尝试获取当前的城市和国家:

With a CLLocation object (content e.g. latitude = 48.196169, longitude = 11.620237), I try to get the current city and country like:

if(!geocoder) {
    geocoder = [[CLGeocoder alloc] init];
}

if (geocoder.geocoding) [geocoder cancelGeocode];
    [geocoder reverseGeocodeLocation:lo completionHandler:^(NSArray *placemarks, NSError *error) {
    if(devMode) {
        NSLog(@"Found placemarks: %@, error: %@", placemarks, error);
    }

    if (error == nil && [placemarks count] > 0) {
        // MY CODE - here placemarks is always (null)
    } else {
        if(devMode)
            NSLog(@"%@", error.debugDescription);
    }
}];

大多数情况下效果很好。但在极少数情况下,我只是得到错误:

mostly, that works great. But in rarely cases, I just get the errors:


PBRequester失败,错误错误域= NSURLErrorDomain代码= -1000
UngültigeURLUserInfo = 0x16f5ff30 {NSUnderlyingError = 0x16f57810
UngültigeURL,NSLocalizedDescription =UngültigeURL}

PBRequester failed with Error Error Domain=NSURLErrorDomain Code=-1000 "Ungültige URL" UserInfo=0x16f5ff30 {NSUnderlyingError=0x16f57810 "Ungültige URL", NSLocalizedDescription=Ungültige URL}

找到地标:(null),错误:错误域= kCLErrorDomain Code = 2
操作无法完成。(kCLErrorDomain错误2。)

Found placemarks: (null), error: Error Domain=kCLErrorDomain Code=2 "The operation couldn’t be completed. (kCLErrorDomain error 2.)"

我'我完全不知道为什么会这样。

I've absolutely no idea why this happens.

推荐答案

您可以使用以下代码查找地址行,在此您必须通过纬度和经度作为参数

You can use the following code to find the address line, here you have to pass latitude and longitude as a parameter

- (void)findAddress:(CLLocationDegrees)latitude with:(CLLocationDegrees)longitude{
CLLocation *location =[[CLLocation alloc]initWithLatitude:latitude longitude:longitude];
CLGeocoder *geocoder = [[CLGeocoder alloc] init];
[geocoder reverseGeocodeLocation:location completionHandler:^(NSArray *placemarks, NSError *error) {
    NSLog(@"Finding address");
    if (error) {
        NSLog(@"Error %@", error.description);
    } else {
        NSLog(@"%@",placemarks[0]);
    }
}]; }

在这里你必须导入以下
#import< ; CoreLocation / CLGeocoder.h>

Here you have to import the following #import <CoreLocation/CLGeocoder.h>

这篇关于CLGeocoder反向地理编码失败,错误域= NSURLErrorDomain Code = -1000 - 的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆