iphone - 来自谷歌地图 URL 的 MKMapView
我是第一次使用 MKMapView。
我需要在一个 MKMapView 中显示一些地址:该地址(解析 xml 文件)是谷歌地图链接。
是否可以使用 URL 设置 MKMapView 的坐标? 或者我需要获取经度和纬度?
谢谢
i'm using the MKMapView first time.
I need to show some address in one MKMapView: the address (take parsing an xml file) are google maps links.
Is possible to set the coordinates of the MKMapView using the URL?
Or i need to take the longitude and latidude?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
否则,您必须获取该点的经度和纬度位置
您可以向谷歌地图服务提供地址,它将提供 JSON 或 XML 格式的纬度和经度位置(有关参考,请参阅谷歌反向地理编码)。
http://googlemapsapi.blogspot.com/2006/06/geocoding-at -last.html
使用 NSMutableRequest 类找出纬度和经度,
对于参考 urlString-
对于 MKMapView 你可以参考这个博客-
链接
You have to take the longitude and latitude position of the point otherwise
you can provide address to google map service, it will provide a lat and long position in JSON or XML format(for reference see google Reverse geo coding).
http://googlemapsapi.blogspot.com/2006/06/geocoding-at-last.html
use NSMutableRequest class to find-out the lat and long,
for reference urlString-
for MKMapView you can refer this blog-
link
要在 MKMapView 上绘制一个点,我很确定您需要经度和经度。该点的纬度。
据我所知,使用 iPhone MKMapView &关联的类,您可以进行反向地理编码(即 - 将经度和纬度转换为地址),但我认为另一种方式 - 不支持正向地理编码(地址转换为经度/纬度)。
您可以使用许多除 google 之外的服务进行正向地理编码 - 其中之一是 Geonames< /a>.免费服务没有支持合同,因此它可能会在没有通知的情况下停止工作 - 但对于小型或离线操作来说,它似乎可以解决问题。
To plot a point on a MKMapView, I'm pretty sure you need the longitude & latitude of the point.
As far as I'm aware using the iPhone MKMapView & associated classes, you can do reverse geocoding (ie - convert a longitide & latitude into an address), but I think going the other way - forward geocoding (address into a longitude / latitude) is not supported.
There are plenty of services you can use though that aren't google that do forward geocoding - one of which is Geonames. The free service has no support contract, so it's liable to stop working without notice - but it seems to do the trick OK for small or offline operations.