iOS - 没有互联网连接的 CLGeocoder
iOS - CLGeocoder without internet connection
我正在使用 CLGeocoder
在地图上定位地址并计算用户与一大堆地址相比的距离。
这是使用 CLGeocoder
的代码部分:
CLGeocoder *geocoder = [[CLGeocoder alloc] init];
__block float distance;
__block CLLocation *location;
[geocoder geocodeAddressString:adresseFinal completionHandler:^(NSArray *placemarks, NSError *error) {
if ([placemarks count] > 0) {
CLPlacemark *placemark = [placemarks objectAtIndex:0];
location = placemark.location;
CLLocationCoordinate2D coordinate = location.coordinate;
distance = [userLocation distanceFromLocation:location];
[distanceArray addObject:[NSString stringWithFormat:@"%f", distance]];
MKPointAnnotation *point = [[MKPointAnnotation alloc] init];
point.coordinate = coordinate;
point.title = tableNoms[i];
NSMutableArray *coords = [[NSMutableArray alloc] init];
[coords addObject:location];
[coords addObject:userLocation];
[self.mapView addAnnotation:point];
}
dispatch_group_leave(group);
}];
但是当我尝试在没有互联网连接的情况下使用它时,出现以下错误:
Could not determine current country code: Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7877f930 {NSErrorFailingURLStringKey=http://gsp1.apple.com/pep/gcc, _kCFStreamErrorCodeKey=8, NSErrorFailingURLKey=http://gsp1.apple.com/pep/gcc, NSLocalizedDescription=The Internet connection appears to be offline., _kCFStreamErrorDomainKey=12, NSUnderlyingError=0x7877ed30 "The Internet connection appears to be offline."}
我以为我可以在没有互联网的情况下使用本地化(使用 GPS?)?
我是否必须更改我的代码才能使用它?
非常感谢!
地理编码与地理定位不同。 GPS 用于确定您的地理位置,其结果是 latitude/longitude 位置。地理编码是在该地理位置和相应的地址详细信息之间进行转换的过程。
虽然地理定位不需要互联网连接,但地理编码需要,因为它是在 Apple 数据库中查找地理定位地址。
我正在使用 CLGeocoder
在地图上定位地址并计算用户与一大堆地址相比的距离。
这是使用 CLGeocoder
的代码部分:
CLGeocoder *geocoder = [[CLGeocoder alloc] init];
__block float distance;
__block CLLocation *location;
[geocoder geocodeAddressString:adresseFinal completionHandler:^(NSArray *placemarks, NSError *error) {
if ([placemarks count] > 0) {
CLPlacemark *placemark = [placemarks objectAtIndex:0];
location = placemark.location;
CLLocationCoordinate2D coordinate = location.coordinate;
distance = [userLocation distanceFromLocation:location];
[distanceArray addObject:[NSString stringWithFormat:@"%f", distance]];
MKPointAnnotation *point = [[MKPointAnnotation alloc] init];
point.coordinate = coordinate;
point.title = tableNoms[i];
NSMutableArray *coords = [[NSMutableArray alloc] init];
[coords addObject:location];
[coords addObject:userLocation];
[self.mapView addAnnotation:point];
}
dispatch_group_leave(group);
}];
但是当我尝试在没有互联网连接的情况下使用它时,出现以下错误:
Could not determine current country code: Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7877f930 {NSErrorFailingURLStringKey=http://gsp1.apple.com/pep/gcc, _kCFStreamErrorCodeKey=8, NSErrorFailingURLKey=http://gsp1.apple.com/pep/gcc, NSLocalizedDescription=The Internet connection appears to be offline., _kCFStreamErrorDomainKey=12, NSUnderlyingError=0x7877ed30 "The Internet connection appears to be offline."}
我以为我可以在没有互联网的情况下使用本地化(使用 GPS?)?
我是否必须更改我的代码才能使用它?
非常感谢!
地理编码与地理定位不同。 GPS 用于确定您的地理位置,其结果是 latitude/longitude 位置。地理编码是在该地理位置和相应的地址详细信息之间进行转换的过程。
虽然地理定位不需要互联网连接,但地理编码需要,因为它是在 Apple 数据库中查找地理定位地址。