是否可以通过使用iOS Map Kit / Google Maps API进行转弯导航或通过启动提供了起点和终点的iOS Maps / Google Maps进行转弯?

最佳答案

以下代码将打开本地地图应用,其中包含从当前位置到指定位置的路线。 (使用经度和纬度)

double latitude = **>>Your latitude<<**;
double longitude = **>>Your longitude<<**;



MKPlacemark *placemark = [[MKPlacemark alloc] initWithCoordinate:CLLocationCoordinate2DMake(latitude, longitude) addressDictionary:nil];

MKMapItem *mapItem = [[MKMapItem alloc] initWithPlacemark:placemark];
[mapItem setName:**>>Title of your desitnation<<**];

NSDictionary *options = @{
                          MKLaunchOptionsDirectionsModeKey:
                              MKLaunchOptionsDirectionsModeDriving,
                          MKLaunchOptionsMapTypeKey:
                              [NSNumber numberWithInteger:MKMapTypeStandard],
                          MKLaunchOptionsShowsTrafficKey:@NO
                          };

[mapItem openInMapsWithLaunchOptions:options];

10-08 13:39