是否有任何方法可以在 Google Maps SDK 上实现正向地理编码?我不想使用 Google Maps API Web Services。
谢谢
Best Answer-推荐答案 strong>
根据您的评论,您可以使用 native CLGeocoder类(class)。前向地理编码请求获取用户可读的地址并找到相应的纬度和经度值。
CLGeocoder geocoder = [[CLGeocoder alloc] init];
[geocoder geocodeAddressString"1 Infinite Loop"
completionHandler:^(NSArray* placemarks, NSError* error){
for (CLPlacemark* aPlacemark in placemarks)
{
// Process the placemark.
}
}];
关于ios - 在 iOS 6 上使用 Google Maps SDK 转发地理编码,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/21535187/
|