在iOS 6上使用Google Maps SDK进行转发地理编码

时间:2014-02-03 18:45:07

标签: ios google-maps geocoding clgeocoder

是否有任何方法可以在Google Maps SDK上实施转发地理编码?我不想使用Google Maps API网络服务。 谢谢

1 个答案:

答案 0 :(得分:1)

根据您的评论,您可以使用原生CLGeocoder课程。转发地理编码请求采用用户可读的地址并找到相应的纬度和经度值。

CLGeocoder geocoder = [[CLGeocoder alloc] init];
[geocoder geocodeAddressString:@"1 Infinite Loop"
     completionHandler:^(NSArray* placemarks, NSError* error){
         for (CLPlacemark* aPlacemark in placemarks)
         {
             // Process the placemark.
         }
}];