Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以根据给定方向获取要在 Google Maps/Apple Maps(取决于 iOS 版本)中使用的坐标?我有方向(街道和号码)、邮政编码和国家(在我的情况下,国家永远是西班牙)
谢谢
您需要为此使用 Geocoder,请在此处找到指南:
地理编码位置数据
您可以在文档末尾找到一个示例:
[geocoder geocodeAddressString:@"1 Infinite Loop" completionHandler:^(NSArray* placemarks, NSError* error){ for (CLPlacemark* aPlacemark in placemarks) { // Process the placemark. } }];
正如他们所说,您提供的信息越多,就越准确。