如何使用“maps:”方案打开Goog​​le地图应用程序?

时间:2012-03-06 22:54:51

标签: iphone html google-maps

首先,我正在制作一个 web 应用程序,而不是iPhone应用程序。


如何打开Goog​​le地图应用程序并传递一个位置,以便在应用程序中查看?

我把它作为一个链接:

<a href="maps:58.09423,67.97662">Open in Google Maps</a>

它会打开谷歌地图应用程序,但它不会根据请求放大到带标记的地方,我该怎么做?

3 个答案:

答案 0 :(得分:3)

基于Apple docs,我相信您所寻找的是:

<a href="http://maps.google.com/maps?ll=58.09423,67.97662">Open in Google Maps</a>

答案 1 :(得分:0)

以下代码将在请求的位置使用标记打开谷歌地图。

[someUIApplication openURL:[NSURL URLWithString:@"http://maps.google.com/maps?q=58.09423,67.97662"]]

答案 2 :(得分:0)

您不再使用地图:协议,只是直接链接到谷歌。我相信地图:早于手机,可能是原产地的Symbian惯例。

开发人员参考。

https://developer.apple.com/library/ios/#featuredarticles/iPhoneURLScheme_Reference/Articles/MapLinks.html