ios – 使用Google地图和Apple Maps URL方案自动开始导航

前端之家收集整理的这篇文章主要介绍了ios – 使用Google地图和Apple Maps URL方案自动开始导航前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在iOS上使用URL方案启动 Google MapsApple Maps时,有没有办法自动启动导航?

我看到两个可选参数,但没有用户输入就没有开始导航.

解决方法

这是我如何为你的参考,但对于苹果,我还没有找到一种方法来启动通过网址方案导航.
+ (void)navigateToLocation:(CLLocation*)_navLocation {
    if ([[UIApplication sharedApplication] canOpenURL:
         [NSURL URLWithString:@"comgooglemaps://"]]) {
        NSString *string = [NSString stringWithFormat:@"comgooglemaps://?daddr=%f,%f&directionsmode=driving",_navLocation.coordinate.latitude,_navLocation.coordinate.longitude];
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:string]];
    } else {
        NSString *string = [NSString stringWithFormat:@"http://maps.apple.com/?ll=%f,%f",_navLocation.coordinate.longitude];
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:string]];
    }
}
原文链接:https://www.f2er.com/iOS/328414.html

猜你在找的iOS相关文章