gpt4 book ai didi

ios - 从 iPhone 应用程序启动 Google map 应用程序。

转载 作者:可可西里 更新时间:2023-11-01 05:48:27 25 4
gpt4 key购买 nike

我正在尝试从我的 iPhone 应用程序启动谷歌地图。

启动部分工作正常,但自从 iPhone 3.1 更新(我想是在这个时候)我得到了一张缩小的美国和加拿大 map ,而不是放大我当前的位置。最初一切正常,但有时在更新前后一切都停止正常工作。

这是我一直在使用的字符串。这适用于我的合作伙伴的 iOS 3.0 手机和我们的 iOS 2.2.1 的 iPod,但在我的 iOS 3.1 手机上显示加拿大和美国的缩小 map 。

  NSString *name = @"clothing";
NSString *latlong = [[NSString alloc] initWithFormat:@"%@,%@", latitudeString, longitudeString];

NSString *url = [NSString stringWithFormat: @"http://maps.google.com/maps?q=%@&mrt=yp&ll=%@",
[name stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding],
[latlong stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
[latlong release];

非常感谢任何帮助。

提前致谢。

最佳答案

这是我在 one of my apps 中使用的代码它适用于 3.1。 Google map 的参数是 documented here .

CLLocationCoordinate2D stationLocation = ...

NSString *urlString = [[NSString alloc]
initWithFormat:@"http://maps.google.com/maps?saddr=%f,%f&daddr=%f,%f&dirflg=d",
curLocation.latitude,
curLocation.longitude,
stationLocation.latitude,
stationLocation.longitude];

NSURL *aURL = [NSURL URLWithString:urlString];
[urlString release];
[[UIApplication sharedApplication] openURL:aURL];

关于ios - 从 iPhone 应用程序启动 Google map 应用程序。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1563880/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com