获取当前位置的邮政编码 - iPhone SDK
如何使用mapkit获取当前位置的邮政编码,我在文档中没有找到任何用于获取此信息的API。我使用了CLLocationManager的坐标、姿态、水平、垂直、航向和速度参数,但未能获取邮政编码。
任何人都可以给我 API 或示例代码来完成它。
是否可以使用 iPhone 中的当前位置获取邮政编码?
How to get the zip code of the current location using mapkit, i didn't find any API's for getting this in document. i used coordinate,attitue,horizontal,vertical,course and speed parameters of CLLocationManager, but failed to get the zip code.
Could any one please give me the API or sample code to get it done.
Is it possible to get the zip code using current location in iphone?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
iPhone 中的反向地理编码:
首先添加
框架。使用 GPS 位置进行反向地理编码以获取地点详细信息。
如需从 GPS 获取更多详细信息:
Reverse Geocoding in iPhone:
First add
<MobileCoreServices/MobileCoreServices.h>
framework.Reverse geocoding for getting place details using GPS location.
For more details to get from gps:
您可以使用纬度和经度创建 MKPlacemark 对象,其中包含邮政编码。
You can use the latitude and longitude to create an MKPlacemark object, which includes the zip code.
斯威夫特版本:
Swift version: