Google 使用 comgooglemaps 绘制地图方向
Google Map Direction using comgooglemaps
我正在使用 google 地图方向
我正在尝试该代码,但它不起作用
if ([[UIApplication sharedApplication] canOpenURL:
[NSURL URLWithString:@"comgooglemaps://"]]) {
[[UIApplication sharedApplication] openURL:
[NSURL URLWithString:@"comgooglemaps://?center=40.765819,-73.975866&zoom=14&views=traffic"]];
} else {
NSLog(@"Can't use comgooglemaps://");
}
总是出现“无法使用 comgooglemaps://
是否有任何其他设置可以使用它。我已阅读 google 文档,但没有使用任何其他设置的说明
要使此 URL Scheme
正常工作,您需要安装 Google 地图应用程序。
如果你想使用回调选项,你需要你的应用响应一些URL Scheme
。为了这样做,please check this link。之后,在 x-success
参数中传递您的自定义 url 方案。
我正在使用 google 地图方向 我正在尝试该代码,但它不起作用
if ([[UIApplication sharedApplication] canOpenURL:
[NSURL URLWithString:@"comgooglemaps://"]]) {
[[UIApplication sharedApplication] openURL:
[NSURL URLWithString:@"comgooglemaps://?center=40.765819,-73.975866&zoom=14&views=traffic"]];
} else {
NSLog(@"Can't use comgooglemaps://");
}
总是出现“无法使用 comgooglemaps:// 是否有任何其他设置可以使用它。我已阅读 google 文档,但没有使用任何其他设置的说明
要使此
URL Scheme
正常工作,您需要安装 Google 地图应用程序。如果你想使用回调选项,你需要你的应用响应一些
URL Scheme
。为了这样做,please check this link。之后,在x-success
参数中传递您的自定义 url 方案。