使用CLGeocoder转发地理编码示例

时间:2012-03-19 13:37:50

标签: iphone objective-c ios xcode clgeocoder

有关如何在Apple文档旁边使用正向地理编码的工作示例或指导的说明。那是非常通用的(我无法理解)

请这太好了!也有人知道他们是否使用Google API来实现相同或自己的目标吗?

1 个答案:

答案 0 :(得分:11)

发现这个有用,但如果其他人发现它有用,我会在这里发布。

CLGeocoder *geocoder = [[CLGeocoder alloc] init];
    [geocoder geocodeAddressString:PlaceName.text completionHandler:^(NSArray *placemarks, NSError *error) {
        //Error checking

        CLPlacemark *placemark = [placemarks objectAtIndex:0];
        MKCoordinateRegion region;
        region.center.latitude = placemark.region.center.latitude;
        region.center.longitude = placemark.region.center.longitude;
        MKCoordinateSpan span;
        double radius = placemark.region.radius / 1000; // convert to km

        NSLog(@"Radius is %f", radius);
        span.latitudeDelta = radius / 112.0;

        region.span = span;

        [mapView setRegion:region animated:YES];
    }];