通过在iphone sdk中解析获取城市名称
从这个网址:
http://ws.geonames.org/findNearbyPostalCodes?lat= 19.0176560&lng=72.8561780
我想要的是孟买的城市名称有人可以帮助我吗?
From this url:
http://ws.geonames.org/findNearbyPostalCodes?lat=19.0176560&lng=72.8561780
I want is city name that is mumbai can somebody help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解析出纬度和经度后,您可以使用 MKReverseGeocoder 将该位置转换为 有关该位置的元数据。在该元数据中,您将找到您要查找的城市名称。
更新
看看Apple CurrentAddress 示例应用程序,这里有一个如何使用 MKReverseGeocoder。
Once you have parsed out the latitude and longitude, you can use the MKReverseGeocoder to translate that location to meta data about that location. In that meta data, you will find the city name that you are after.
Update
Have a look at the Apple CurrentAddress sample app, this has an example of how you use the MKReverseGeocoder.