我正在寻找最新的latitude
并正在longitude
使用GPS
(没有互联网)。
现在我想在reverse geocoding
没有互联网的情况下通过 GPS 使用该纬度和经度。
我已经通过互联网连接成功实现了反向地理编码。
这是我实现的代码:-
CLGeocoder * geoCoder = [[CLGeocoder alloc] init];
[geoCoder reverseGeocodeLocation:newLocation completionHandler:^(NSArray *placemarks, NSError *error) {
NSString * location = ([placemarks count] > 0) ? [[placemarks objectAtIndex:0] locality] : @"Not Found";
CLPlacemark *placemark = [placemarks objectAtIndex:0];
NSString *MyAddress = @"";
MyAddress = [[placemark.addressDictionary objectForKey:@"FormattedAddressLines"] componentsJoinedByString:@", "];
NSLog(@"address is %@", MyAddress);
}];
我对此进行了搜索,但找不到任何解决方案。
我怎样才能做到这一点?
谢谢。