iPhone谷歌地图获取地址的纬度和经度
谷歌地图上是否有任何网址可以返回地址的纬度和经度。 我想使用 iPhone 地图套件中的这些纬度和经度详细信息来绘制一些信息。
Is there any URL from google maps, that returns me the latitude and longitude of an address.
i want to use these lat and long details in iPhone Map kit to plot some information.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这对我有用:
祝你好运
This is working for me:
good luck
我不认为有内置的方法可以进行反向地理编码,但我对 iPhone、Objective C、Cocoa 和 XCode 还很陌生,所以。
这是我能找到的最好的文章主题。
放入我的“could be good”书签抽屉中:)
第二个示例 URL 提供了一个 XML 文件,您可以使用
initWithContentsOfURL
获取该文件,然后使用getObjectForKey:@"lat"
和getObjectForKey:@"lng"
或类似的内容。I don't think there's a built in way to do reverse reverse geocoding, but I'm new to the iPhone, Objective C, Cocoa and XCode, so.
This is the best article I could find on the subject.
Goes in my 'could be good' bookmark drawer :)
The second example URL gives an XML file that you could fetch with
initWithContentsOfURL
, and thengetObjectForKey:@"lat"
andgetObjectForKey:@"lng"
or something along those lines.