最近在做基于高德地圖的定位、導(dǎo)航及添加大頭針的功能峦睡,特此記錄下來翎苫。。榨了。方便剛接觸的同學(xué)參考煎谍。。龙屉。
一呐粘、申請 Key:獲取用戶Key
1.訪問 http://lbs.amap.com/console/key/,使用高德開發(fā)者賬號登陸
2.在“KEY管理”頁面點(diǎn)擊上方的“獲取key”按鈕,依次輸入應(yīng)用名事哭,選擇綁定的服務(wù)為“iOS平臺SDK”,輸入 Bundle Identifier(獲取方法請參考:獲取 Bundle Indentifier)瓜富,如下圖所示:
獲取 Bundle ID:iOS bundle 獲取方式
方法一:
通過代碼獲取鳍咱,代碼如下所示:NSString *bundleIdentifier = [[NSBundle mainBundle] bundleIdentifier];
方法二:
Xcode 切換到 General 標(biāo)簽,查看 Bundle Identifier与柑,如下圖所示:
二谤辜、在地圖顯示前進(jìn)行項(xiàng)目的配置工作:
在plist配置字段
定位權(quán)限
NSLocationAlwaysUsageDescription:一直定位
NSLocationWhenInUseUsageDescription:需要時(shí)定位
ATS設(shè)置:Https協(xié)議
三、前往高德地圖官網(wǎng)下載需要使用的SDK,解壓得到如圖framework:
地圖顯示是地圖 SDK 的基礎(chǔ)功能价捧,是使用地圖定位丑念、導(dǎo)航等他功能的載體。
首先结蟋,在lbs.amap.com/api/ios-sdk/download/頁面中根據(jù)您的需求下載庫文件并解壓脯倚,包括:
3D 矢量地圖庫,解壓后得到 MAMapKit.framework 文件嵌屎。3D 矢量地圖效果優(yōu)推正,可查看 3D 樓塊,功能全宝惰,還支持離線地圖植榕,能幫您節(jié)省流量。目前暫不支持地圖多實(shí)例尼夺。
2D 柵格地圖庫尊残,解壓后得到 MAMapKit.framework 文件。2D 柵格地圖庫體積小淤堵,能耗低寝衫。支持地圖多實(shí)例。
搜索庫粘勒,解壓后得到 AMapSearchKit.framework 文件竞端。搜索庫功能包含:POI 查詢、路徑規(guī)劃庙睡、地理編碼和逆地理編碼事富、公交查詢以及輸入提示語查詢
注意:3D矢量地圖和2D柵格地圖只能選擇一個(gè)使用,接口類似乘陪,但是地圖顯示樣式不同统台。
1、新建工程:新建一個(gè) GDMap_DEMO Application工程啡邑,如下圖所示:贱勃、
2、配置工程:引入地圖庫
左側(cè)目錄中選中工程名,在 TARGETS->Build Phases-> Link Binary With Libaries 中點(diǎn)擊 “+” 按鈕贵扰,在彈出的窗口中點(diǎn)擊 “Add Other” 按鈕仇穗,選擇解壓后的 MAMapKit.framework 文件添加到工程中。
3戚绕、引入AMap.bundle資源文件纹坐,AMap.bundle 資源文件中存儲了定位、默認(rèn)大頭針標(biāo)注視圖等圖片舞丛,可利用這些資源圖片進(jìn)行開發(fā)耘子,
左側(cè)目錄中選中工程名,在右鍵菜單中選擇 Add Files to “工程名”…球切,從MAMapKit.framework->Resources 文件中選擇 AMap.bundle 文件谷誓,并勾選 “Copy items if needed” 復(fù)選框,單擊 “Add” 按鈕吨凑,將資源文件添加到工程中捍歪。
4、引入高德地圖依賴系統(tǒng)庫文件:
說明:
1.備注中鸵钝,2D表示使用2D柵格地圖需要的系統(tǒng)文件费封,3D表示使用3D矢量地圖需要的系統(tǒng)文件、Search表示使用搜索庫需要的系統(tǒng)文件蒋伦,3D(V3.X.X)表示3D矢量地圖V3.0.0以后版本需要新增的庫弓摘。
2.SystemConfiguration.framework、CoreTelephonySecurity.framework痕届、Security.framework 是為了統(tǒng)計(jì)app信息使用韧献。
3.iOS9后,需要把libz.dylib研叫、libstdc++6.09.dylib锤窑、libc++.dylib替換成libz.tbd、libstdc++6.09.tbd嚷炉、libc++.tbd渊啰。
引入系統(tǒng)庫的操作如下:
左側(cè)目錄中選中工程名,在TARGETS->Build Settings-> Link Binary With Libaries中點(diǎn)擊“+”按鈕申屹,在彈出的窗口中查找并選擇所需的庫(見下表)绘证,單擊“Add”按鈕,將庫文件添加到工程中哗讥。
四嚷那、地圖顯示
1、配置用戶Key:在使用地圖 SDK 時(shí)杆煞,需要對應(yīng)用做 Key 機(jī)制驗(yàn)證魏宽,在地圖初始化之前添加如下示例代碼腐泻,配置之前在官網(wǎng)上申請的 Key:如果地圖顯示不出來,請檢查key設(shè)置的是否正確
```
在 appDelegate.m的方法 :
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.队询、
中設(shè)置key:
[AMapServices sharedServices].apiKey = @“申請的key”;//最新的SDK使用AMapServices或
[MAMapServices sharedServices].apiKey = @"用戶Key";//比較老的SDK使用
return YES;
}
```
2派桩、
1)在想要顯示地圖的 ViewController.m 文件中,引入 MAMapKit.h 文件蚌斩,繼承 MAMapViewDelegate 協(xié)議窄坦,并定義 MAMapView 對象,示例代碼如下所示:
```
#import#import@interface ViewController ()//地圖
@property (nonatomic, strong) MAMapView *mapView;
@end
```
2)在 ViewController.m 文件相應(yīng)的方法中進(jìn)行地圖初始化凳寺,初始化的步驟:
(1).構(gòu)造 MAMapView 對象;(2).設(shè)置代理彤侍;(3).將 MAMapView 添加到 Subview 中
//地圖初始化
```
self.mapView = [[MAMapView alloc] initWithFrame:CGRectMake(0, 64, KScreenWidth, KScreenHeight)];
_mapView.backgroundColor = [UIColor whiteColor];
self.mapView.delegate = self;
//設(shè)置定位精度
//? ? _mapView.desiredAccuracy = kCLLocationAccuracyBest;
//設(shè)置定位距離
//? ? _mapView.distanceFilter = 5.0f;
_mapView.zoomEnabled = YES;
//普通樣式
_mapView.mapType = MAMapTypeStandard;
//地圖跟著位置移動(dòng)
[_mapView setUserTrackingMode:MAUserTrackingModeFollow animated:YES];
//設(shè)置成NO表示關(guān)閉指南針肠缨;YES表示顯示指南針
_mapView.showsCompass= NO;
//設(shè)置指南針位置
_mapView.compassOrigin= CGPointMake(_mapView.compassOrigin.x, 22);
//設(shè)置成NO表示不顯示比例尺;YES表示顯示比例尺
_mapView.showsScale= NO;
//設(shè)置比例尺位置
_mapView.scaleOrigin= CGPointMake(_mapView.scaleOrigin.x, 22);
//縮放等級
[_mapView setZoomLevel:16 animated:YES];
//開啟定位
_mapView.showsUserLocation = YES;
[self.view addSubview:self.mapView];
```
當(dāng)位置更新時(shí),會(huì)進(jìn)定位回調(diào),通過回調(diào)函數(shù),能獲取到定位點(diǎn)的經(jīng)緯度坐標(biāo),示例代碼如下:
```
- (void)mapView:(MAMapView *)mapView didUpdateUserLocation:(MAUserLocation *)userLocation updatingLocation:(BOOL)updatingLocation {
//userLocation 就是用戶當(dāng)前的位置信息盏阶,通過userLocation 可以獲取當(dāng)前的經(jīng)緯度信息及詳細(xì)的地理位置信息晒奕,方法如下:
//創(chuàng)建一個(gè)經(jīng)緯度點(diǎn):
MAPointAnnotation *point = [[MAPointAnnotation alloc] init];
//設(shè)置點(diǎn)的經(jīng)緯度
point.coordinate = _currentUL.location.coordinate;
CLLocation *currentLocation = [[CLLocation alloc]initWithLatitude:_currentUL.location.coordinate.latitude longitude:_currentUL.location.coordinate.longitude];
// 初始化編碼器
CLGeocoder *geoCoder = [[CLGeocoder alloc] init];
[geoCoder reverseGeocodeLocation:currentLocation completionHandler:^(NSArray *placemarks, NSError *error) {
//獲取當(dāng)前城市位置信息,其中CLPlacemark包括name名斟、thoroughfare脑慧、subThoroughfare、locality砰盐、subLocality等詳細(xì)信息
CLPlacemark *mark = [placemarks lastObject];
NSString *cityName = mark.locality;
//? ? ? ? NSLog(@"城市 - %@", cityName);
self.currentCity? = cityName;
}];
}
```
查看顯示效果:
四闷袒、添加大頭針:
代碼:
//創(chuàng)建坐標(biāo)
```
CLLocationCoordinate2D coor ;
coor.latitude = @“39.33232132323”;
coor.longitude = @“116.23423423423”岩梳;
MAPointAnnotation *pointAnnotation = [[MAPointAnnotation alloc] init];
pointAnnotation.coordinate = coor;
//設(shè)置地圖的定位中心點(diǎn)坐標(biāo)
self.mapView.centerCoordinate = coor;
//將點(diǎn)添加到地圖上囊骤,即所謂的大頭針
[self.mapView addAnnotation:pointAnnotation];
添加了大頭針,會(huì)進(jìn)入mapview的代理方法:在代理方法中可以設(shè)置大頭針的顯示圖片冀值,及點(diǎn)擊大頭針彈出的氣泡視圖
- (MAAnnotationView *)mapView:(MAMapView *)mapView viewForAnnotation:(id)annotation {
//大頭針標(biāo)注
if ([annotation isKindOfClass:[MAPointAnnotation class]]) {//判斷是否是自己的定位氣泡也物,如果是自己的定位氣泡,不做任何設(shè)置列疗,顯示為藍(lán)點(diǎn)滑蚯,如果不是自己的定位氣泡,比如大頭針就會(huì)進(jìn)入
static NSString *pointReuseIndentifier = @"pointReuseIndentifier";
MAAnnotationView*annotationView = (MAAnnotationView*)[mapView dequeueReusableAnnotationViewWithIdentifier:pointReuseIndentifier];
if (annotationView == nil) {
annotationView = [[MAAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:pointReuseIndentifier];
}
annotationView.frame = CGRectMake(0, 0, 100, 100);
annotationView.canShowCallout= YES;? ? ? //設(shè)置氣泡可以彈出抵栈,默認(rèn)為NO
//annotationView.animatesDrop = YES;? ? ? ? //設(shè)置標(biāo)注動(dòng)畫顯示告材,默認(rèn)為NO
annotationView.draggable = YES;? ? ? ? ? //設(shè)置標(biāo)注可以拖動(dòng),默認(rèn)為NO
//? ? ? ? annotationView.pinColor = MAPinAnnotationColorPurple;
//設(shè)置大頭針顯示的圖片
annotationView.image = [UIImage imageNamed:@"point"];
//點(diǎn)擊大頭針顯示的左邊的視圖
UIImageView *imageV = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"backImage"]];
annotationView.leftCalloutAccessoryView = imageV;
//點(diǎn)擊大頭針顯示的右邊視圖
UIButton *rightButton = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 80, 50)];
rightButton.backgroundColor = [UIColor grayColor];
[rightButton setTitle:@"導(dǎo)航" forState:UIControlStateNormal];
annotationView.rightCalloutAccessoryView = rightButton;
//? ? ? ? annotationView.image = [UIImage imageNamed:@"redPin"];
return annotationView;
}
return nil;
}
```
查看效果圖:
五古劲、后續(xù)更新導(dǎo)航功能创葡,請繼續(xù)關(guān)注。绢慢。灿渴。