我正在使用导航应用程序来显示转弯行车路线。在iOS 6中,我们必须将数据传递到ios地图应用程序,但我想在不离开应用程序的情况下显示它。
Apple在iOS 7中引入了新的路线API,所以现在在iOS 7中可以在应用程序中显示Turn By Turn导航(在MKMapView中)?
答案 0 :(得分:2)
在iOS 7中,您可以使用类似的内容在应用中呈现行车方向:
MKDirectionsRequest *request = [[MKDirectionsRequest alloc] init];
[request setSource:[MKMapItem mapItemForCurrentLocation]];
[request setDestination:myMapItem];
[request setTransportType:MKDirectionsTransportTypeAny];
[request setRequestsAlternateRoutes:YES];
MKDirections *directions = [[MKDirections alloc] initWithRequest:request];
[directions calculateDirectionsWithCompletionHandler:^(MKDirectionsResponse *response, NSError *error) {
if (!error) {
for (MKRoute *route in [response routes]) {
[myMapView addOverlay:[route polyline] level:MKOverlayLevelAboveRoads];
}
}
}];
答案 1 :(得分:0)
如果要在两个位置之间渲染路径,此页面可能对您有所帮助。 作为替代方案,您还可以使用Apple接受的Googles Directions API。
http://iosguy.com/tag/directions-api/
https://developers.google.com/maps/documentation/directions/