ios開發--高德地圖SDK使用簡介

高德LBS開放平臺將高德最專業的定位、地圖、搜索、導航等能力,以API、SDK等形式向廣大開發者免費開放。本章節咱們來簡單學習一下如何使用它的定位及地圖SDK。ios

1、相關框架及環境配置

  • 地圖SDK

對於如何下載SDK,它的官方文檔提供了很詳細的說明,使用CocoaPods。若是你沒有安裝CocoaPods,也能夠在它的官網直接下載。git

QQ20160330-0QQ20160330-1

接下來只須要將SDK引入工程,完成相關的環境配置便可。在它的官方文檔中有詳細說明,這裏就不重複了。api

QQ20160330-2

地圖SDK文檔app

  • 定位SDK

高德 iOS 定位 SDK 提供了不依賴於地圖定位的定位功能,開發者能夠無地圖顯示的場景中便捷地爲應用程序添加定位功能。它的定位 SDK中提供的持續定位功能與地圖功能分離。一樣咱們先下載SDK。框架

QQ20160330-3

QQ20160330-4

因爲定位與地圖是不一樣的SDK因此必定要記得設置兩次用戶Key。ide

另外須要特別注意的是,在官方文檔中對於 TARGETS-Build Settings-Architectures的環境配置,在定位和地圖SDK是不一樣的,可是你們只要設置其中一個就能夠了。學習

定位SDK文檔動畫

2、示例代碼

IMG_1059

  • 引入相關框架,並完成環境配置

QQ20160330-5

在它的官方文檔中對於須要什麼樣的框架有詳細的說明,你們根據文檔添加。ui

最後根據文檔咱們須要設置info.plist文件。atom

QQ20160330-7

  • 在AppDelegate.m文件中完成apiKey的設置
  1. #import <MAMapKit/MAMapKit.h>//地圖SDK頭文件
  2. #import <AMapLocationKit/AMapLocationKit.h>//定位SDK頭文件
  1. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  2. [MAMapServices sharedServices].apiKey = @"990c9f469d381bd72a6915b3d0c829a5";//地圖SDK
  3. [AMapLocationServices sharedServices].apiKey =@"990c9f469d381bd72a6915b3d0c829a5";//定位SDK
  4. return YES;
  5. }
  • 在viewController.m文件中引入所需屬性,並完成懶加載
  1. #import <MAMapKit/MAMapKit.h>
  2. #import <AMapLocationKit/AMapLocationKit.h>
  1. @interface ViewController ()<MAMapViewDelegate,AMapLocationManagerDelegate>
  2. @property (nonatomic, strong) MAMapView *mapView;//地圖視圖
  3. @property (nonatomic, strong) AMapLocationManager *locationManager;//定位管理者
  4. @end
  1. - (MAMapView *)mapView{
  2. if (!_mapView) {
  3. _mapView = [[MAMapView alloc] initWithFrame:CGRectMake(0, 0, CGRectGetWidth(self.view.bounds), CGRectGetHeight(self.view.bounds))];
  4. _mapView.delegate = self;
  5. _mapView.mapType = MAMapTypeStandard;//設置地圖類型
  6. _mapView.showTraffic= YES;//是否顯示交通圖
  7. [self.locationManager startUpdatingLocation];//開始定位
  8. [_mapView setUserTrackingMode: MAUserTrackingModeFollow animated:YES];//定位之後改變地圖的圖層顯示。
  9. [self.view addSubview:_mapView];
  10. }
  11. return _mapView;
  12. }
  13. - (AMapLocationManager *)locationManager{
  14. if (!_locationManager) {
  15. _locationManager = [[AMapLocationManager alloc] init];
  16. _locationManager.delegate = self;
  17. }
  18. return _locationManager;
  19. }
  20. - (void)viewDidLoad {
  21. [super viewDidLoad];
  22. [self locationManager];
  23. [self mapView];
  24. }
  • 完成定位和「大頭針」功能
  1. //AMapLocationManager代理方法位置更新之後回調。
  2. - (void)amapLocationManager:(AMapLocationManager *)manager didUpdateLocation:(CLLocation *)location
  3. {
  4. NSLog(@"location:{lat:%f; lon:%f; accuracy:%f}", location.coordinate.latitude, location.coordinate.longitude, location.horizontalAccuracy);
  5. }
  6. -(void) viewDidAppear:(BOOL)animated
  7. {
  8. [super viewDidAppear:animated];
  9. MAPointAnnotation *pointAnnotation = [[MAPointAnnotation alloc] init];
  10. pointAnnotation.coordinate = CLLocationCoordinate2DMake(31.982527, 118.735046);
  11. pointAnnotation.title = @"宏創科技";
  12. pointAnnotation.subtitle = @"國家廣告產業園XXX";
  13. [self.mapView addAnnotation:pointAnnotation];
  14. }
  15. //MAMapView代理方法,用來設置大頭針
  16. - (MAAnnotationView *)mapView:(MAMapView *)mapView viewForAnnotation:(id )annotation
  17. {
  18. if ([annotation isKindOfClass:[MAPointAnnotation class]])
  19. {
  20. static NSString *pointReuseIndentifier = @"pointReuseIndentifier";
  21. MAPinAnnotationView*annotationView = (MAPinAnnotationView*)[mapView dequeueReusableAnnotationViewWithIdentifier:pointReuseIndentifier];
  22. if (annotationView == nil)
  23. {
  24. annotationView = [[MAPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:pointReuseIndentifier];
  25. }
  26. annotationView.canShowCallout= YES; //設置氣泡能夠彈出,默認爲NO
  27. annotationView.animatesDrop = YES; //設置標註動畫顯示,默認爲NO
  28. annotationView.draggable = YES; //設置標註能夠拖動,默認爲NO
  29. annotationView.pinColor = MAPinAnnotationColorPurple;
  30. return annotationView;
  31. }
  32. return nil;
  33. }
相關文章
相關標籤/搜索