0

您好我正在尝试在 iOS6 上使用 Mapkit 获取 2 点之间的路线。想法是在地图上获取路线和叠加层。但是通过 tun 获取 Turn 的唯一方法是使用地图应用程序或使用 URL 启动地图应用程序。

在 iOS6 上无需关闭应用程序即可获得 Turn by turn 功能吗?

4

1 回答 1

0

您可以为此使用 web 视图并仅在 UIWebView 中打开 safari,现在您只需为其添加导航栏即可导航到您的应用程序。

使用下面的代码:

    MKCoordinateRegion region = { {0.0, 0.0 }, { 0.0, 0.0 } };
    region.center.latitude = getLatitude;
    region.center.longitude = getLongitude;

    MKCoordinateRegion currentRegion = { {0.0, 0.0 }, { 0.0, 0.0 } };
    currentRegion.center.latitude = currentLatitude;
    currentRegion.center.longitude = currentLongitude;
    region.span.longitudeDelta = 4.0f;
    region.span.latitudeDelta = 4.0f;
    currentRegion.span.longitudeDelta = 4.0f;
    currentRegion.span.latitudeDelta = 4.0f;

    CLLocationCoordinate2D start = { currentRegion.center.latitude, currentRegion.center.longitude };
    CLLocationCoordinate2D destination = { region.center.latitude, region.center.longitude };


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

    NSURL *url=[NSURL URLWithString:googleMapsURLString];
    NSURLRequest *requestObj=[NSURLRequest requestWithURL:url];
    [webView loadRequest:requestObj];
于 2013-01-22T12:22:29.700 回答