Ios 地图应用程序建议的不需要的路线

Ios 地图应用程序建议的不需要的路线,ios,objective-c,xcode,mapkit,Ios,Objective C,Xcode,Mapkit,我正在使用此代码在驾驶模式下为当前位置和选定目的地之间的路线启动地图: MKPlacemark *placemark = [[MKPlacemark alloc] initWithCoordinate:dest.coordinate addressDictionary:nil]; MKMapItem * destination = [[MKMapItem alloc] initWithPlacemark: placemark]; destination.name = @"Point of int

我正在使用此代码在驾驶模式下为当前位置和选定目的地之间的路线启动地图:

MKPlacemark *placemark = [[MKPlacemark alloc] initWithCoordinate:dest.coordinate addressDictionary:nil];
MKMapItem * destination = [[MKMapItem alloc] initWithPlacemark: placemark];
destination.name = @"Point of interest";
NSArray* items = [[NSArray alloc] initWithObjects: destination, nil];
NSDictionary* options = @{MKLaunchOptionsMapTypeKey : @(MKMapTypeStandard),
                          MKLaunchOptionsDirectionsModeKey: MKLaunchOptionsDirectionsModeDriving};
[MKMapItem openMapsWithItems: items launchOptions: options];
不幸的是,地图建议步行路线作为替代方案,如本截图所示:

有没有办法隐藏这条步行路线

我的目标是iOS 7