5

我有一个移动网站,我有一个链接可以从我的网站中打开 Google 地图应用程序。然而,现在有了新版本的 ios6,谷歌地图的原生版本不再存在,现在链接打开到基于 safari 的谷歌地图。我宁愿在本地 Apple 地图应用程序中打开它。我怎样才能做到这一点?

感谢大家的帮助!

4

2 回答 2

14

maps.google.com而不是使用您以前使用的 Google 域maps.apple.com。这将与运行 5.x 及更低版本的旧设备保持兼容。

它看起来像这样:

http://maps.apple.com/maps?q=cupertino

大多数参数是相同的,但请参阅 Apple 文档了解更多详细信息:

Apple URL Scheme 参考:地图链接

于 2012-09-20T02:56:10.863 回答
1

你想要什么 ?

打开地图网络野生动物园或打开地图应用程序?

试试这个

CLLocation * currentLocation;
NSURL *requestUrl;
CLLocationCoordinate2D storedLocation;


CLLocationCoordinate2D start = { (storedLocation.latitude), (storedLocation.longitude) };

//Bitiş Yeri
CLLocationCoordinate2D end = { ([koordinatX floatValue]), ([koordinatY floatValue]) };

NSString *googleMapsURLString = [NSString stringWithFormat:@"http://maps.google.com/?saddr=%1.6f,%1.6f&daddr=%1.6f,%1.6f", start.latitude, start.longitude, end.latitude, end.longitude];

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:googleMapsURLString]];
于 2012-12-14T09:52:48.907 回答