我正在使用xcode的4.6.2版本,我的目标是显示到搜索目的地的最短/最快路线。
我看了整个互联网和stackoverflow,我发现了很多东西,但我无法弄清楚如何在我的应用程序中实现它。
我开始使用“单视图应用程序项目” 目前我有一个带有4个按钮和搜索栏的世界地图:
“位置” - 将您带到当前位置 “正常” - 显示默认地图 “卫星” - 显示卫星地图 “混合” - 显示混合地图 http://tinypic.com/r/15g8m87/5
这是我必须控制它的当前代码。
“ViewController.h”
#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>
@interface ViewController : UIViewController {
IBOutlet MKMapView *mapView;
}
-(IBAction)findmylocation:(id)sender;<br>
-(IBAction)setmaptype:(id)sender;
@end
和“ViewController.m”
#import "ViewController.h"
@implementation ViewController;
-(IBAction)findmylocation:(id)sender {
mapView.showsUserLocation = YES;
mapView.delegate = self;
[mapView setUserTrackingMode:MKUserTrackingModeFollow animated:YES];
}
-(IBAction)setmaptype:(id)sender {
switch (((UISegmentedControl *)sender).selectedSegmentIndex) {
case 0:
mapView.mapType = MKMapTypeStandard;
break;
case 1:
mapView.mapType = MKMapTypeSatellite;
break;
case 2:
mapView.mapType = MKMapTypeHybrid;
break;
default:
mapView.mapType = MKMapTypeStandard;
break;
}
}
感谢。
答案 0 :(得分:0)
你无法用Apple地图做到这一点,你需要将路线作为协调序列。苹果和谷歌都不提供这种Api。你只能得到一个基于OpenstreetMaps的路线,但这通常不适合苹果地图 因此您还必须更改为基于OpenstreetMap的视图,例如MapKit。