3

我想在 iOS 默认地图应用程序中的两个位置之间实现获取方向功能,我已经尝试过了

Class itemClass = [MKMapItem class];
if (itemClass && [itemClass respondsToSelector:@selector(openMapsWithItems:launchOptions:)]) {
    // Use iOS 6 maps
    NSString *latString = @"23.0300";
    NSString *longString = @"72.5800";

    CLLocationCoordinate2D  ctrpoint;
    ctrpoint.latitude = [latString doubleValue];
    ctrpoint.longitude = [longString doubleValue];

    MKPlacemark *placemark2 = [[MKPlacemark alloc] initWithCoordinate:ctrpoint addressDictionary:nil];
    MKMapItem *mapItem = [[MKMapItem alloc] initWithPlacemark:placemark2];
    [mapItem openInMapsWithLaunchOptions:nil];
}

但它显示方向错误如下:

获取方向错误

我什至打开了地图应用程序,找到了我当前的位置,在离我最近的位置最近的地图上添加了一个图钉,但仍然无法获得方向。

此外“简而言之,即使在本机应用程序中,Get Direction 也不能完全工作”任何人都可以帮助我实现这一目标吗?

4

2 回答 2

7

Apple 地图不支持印度的路线。

如果在手机上可用,您可以使用谷歌地图获取路线。如果 Google 地图应用程序不可用,请使用 Apple 地图。

以下代码块可能会有所帮助。

    NSURL *appUrl;

    //Is Google Maps App Installed ?
   if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"comgooglemaps://"]]) {

        // Use Google Maps App to get Directions
       appUrl = [NSURL URLWithString:[NSString stringWithFormat:@"comgooglemaps://?daddr=%f,%f&saddr=%f,%f",
                            destLocation.coordinate.latitude, destLocation.coordinate.longitude,
                            _currentLocation.coordinate.latitude,_currentLocation.coordinate.longitude]];
    }

    // Google Maps not Installed
    else {

        // Use Apple Maps App to get Directions
        appUrl = [NSURL URLWithString:[NSString stringWithFormat:@"http://maps.apple.com/?daddr=%f,%f&saddr=%f,%f",
                           destLocation.coordinate.latitude, destLocation.coordinate.longitude,
                           _currentLocation.coordinate.latitude,_currentLocation.coordinate.longitude]];
    }

    [[UIApplication sharedApplication] openURL:appUrl];
于 2013-11-01T07:44:31.850 回答
1

根据此Apple 功能可用性,印度不支持方向。

根据这篇文章,iOS 6 似乎也是如此。

于 2013-10-31T10:59:29.963 回答