iphone - 来自谷歌地图 URL 的 MKMapView

发布于 2024-10-17 05:42:55 字数 143 浏览 1 评论 0原文

我是第一次使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

九八野马 2024-10-24 05:42:55

否则,您必须获取该点的经度和纬度位置
您可以向谷歌地图服务提供地址,它将提供 JSON 或 XML 格式的纬度和经度位置(有关参考,请参阅谷歌反向地理编码)。

http://googlemapsapi.blogspot.com/2006/06/geocoding-at -last.html

使用 NSMutableRequest 类找出纬度和经度,
对于参考 urlString-

NSString *urlString = [NSString stringWithFormat:@"http://maps.google.com/maps/geo?q=%@&output=csv", theAddress];
NSString *locationString = [[[NSString alloc] initWithContentsOfURL:[NSURL URLWithString:urlString]] autorelease];

对于 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-

NSString *urlString = [NSString stringWithFormat:@"http://maps.google.com/maps/geo?q=%@&output=csv", theAddress];
NSString *locationString = [[[NSString alloc] initWithContentsOfURL:[NSURL URLWithString:urlString]] autorelease];

for MKMapView you can refer this blog-
link

雨落星ぅ辰 2024-10-24 05:42:55

要在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文