iOS5でルートを描いていたのですが、アプリをiOS6にバージョンアップする必要があるため、座標間のルートを描くことができません。いろいろ探しましたが、だめでした。Googleマップがサポートされなくなったため、iOS6で使用するAPIについて誰か助けてもらえますか???
編集:以前に Google iOS SDK を使用して、ポリラインを自動的に処理するルートをプロットしました。検索した限りでは、ブラウザにリダイレクトしてルートとナビゲーションを表示できます。しかし、このアプリ内 [ iOS6 ] を描画する必要があります。iOS6 はルーティングを自動的に行いますか。このコードサンプルは、Googleマップを使用してiOS5で使用しました
// over lay map to draw route
routeOverlayView = [[UICRouteOverlayMapView alloc] initWithMapView:routeMapView];
diretions = [UICGDirections sharedDirections];
UICGDirectionsOptions *options = [[UICGDirectionsOptions alloc] init];
//setting travel mode to driving
options.travelMode = UICGTravelModeDriving;
[diretions loadWithStartPoint:startPoint endPoint:endPoint options:options];
// Overlay polylines
UICGPolyline *polyline = [directions polyline];
NSArray *routePoints = [polyline routePoints];
NSLog(@"routePoints %@",routePoints);
[routeOverlayView setRoutes:routePoints];