gpt4 book ai didi

ios - 邮政编码到纬度和经度坐标

转载 作者:行者123 更新时间:2023-12-01 18:44:06 25 4
gpt4 key购买 nike

如何将 zip 或我的邮政编码(英国)转换为经纬度坐标?

我阅读过有关使用 google geocoding api 的内容,但读到它有很多限制,例如在应用程序中使用 google map 和限制请求。

我还找到了this但我不确定如何着手实现它

最佳答案

您可能希望使用 GeocodeAddressDictionary,它接受特定地址类型的字典。

在您的情况下,您将执行以下操作。

    let geocoder = CLGeocoder()
let dic = [NSTextCheckingZIPKey: yourZipCode]

geocoder.geocodeAddressDictionary(dic) { (placemark, error) in

if((error) != nil){
print(error!)
}
if let placemark = placemark?.first {
let lat = placemark.location!.coordinate.latitude
let long = placemark.location!.coordinate.longitude

}

}

关于ios - 邮政编码到纬度和经度坐标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38027027/

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