gpt4 book ai didi

ios - 在 iOS 6 上使用 Google Maps SDK 转发地理编码

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:36:54 24 4
gpt4 key购买 nike

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

最佳答案

根据您的评论,您可以使用 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com