I'm using the geocodeAddressString:completionHandler:
method, which returns an array of CLPlacemarks. I have to get latitude, longitude, mnemonical name and radius. While getting the first 3 is easy:
double lat = placemark.location.coordinate.latitude;
double lng = placemark.location.coordinate.longitude;
NSString *name = [NSString stringWithFormat:@"%@", ABCreateStringWithAddressDictionary(placemark.addressDictionary, NO)]
I don't know how to get the radius now, as placemark.region.radius
is deprecated. Any ideas what to use now instead? I can't find anything interesting enough in documentation.