iOS 如何在 2015 年将地址转换为 GPS 坐标(地理编码)?
iOS how can I turn Address into GPS coordinate (geocoding) in 2015?
我正在查看 documentation of classes that come with Google Maps for iOS,发现它允许 GPS 到地址的转换(使用 GMSGeocoder
进行反向地理编码)。还有一个 GMSPlacePicker
用于手动地点选择,但是,我没有看到任何关于常规地理编码的信息。
如何使用 objective-c 将地址编程地理编码为 GPS 坐标?
您可以使用以下link。只需将 Youraddress 替换为实际地址
http://maps.googleapis.com/maps/api/geocode/json?address=Youraddress
在 https://console.developers.google.com 获得 API 钥匙
启用 Google Maps JS API
和 Geocoding API
例如:
https://maps.googleapis.com/maps/api/geocode/json?address=MEDICAL%20CENTER%20OF%20PEACH%20COUNTY,GA&key=YourGeocodingAPIKey
限制似乎是每天 25000 次调用,每秒来自单个客户端的调用 1 次
我正在查看 documentation of classes that come with Google Maps for iOS,发现它允许 GPS 到地址的转换(使用 GMSGeocoder
进行反向地理编码)。还有一个 GMSPlacePicker
用于手动地点选择,但是,我没有看到任何关于常规地理编码的信息。
如何使用 objective-c 将地址编程地理编码为 GPS 坐标?
您可以使用以下link。只需将 Youraddress 替换为实际地址
http://maps.googleapis.com/maps/api/geocode/json?address=Youraddress
在 https://console.developers.google.com 获得 API 钥匙
启用 Google Maps JS API
和 Geocoding API
例如:
https://maps.googleapis.com/maps/api/geocode/json?address=MEDICAL%20CENTER%20OF%20PEACH%20COUNTY,GA&key=YourGeocodingAPIKey
限制似乎是每天 25000 次调用,每秒来自单个客户端的调用 1 次