D28:百度地图iOS SDK使用

开发环境: Xcode6.3.2GM 百度地图iOS SDK: v2.7.0

目录

一. 前期准备

  1. 注册成为开发者, 申请Key
  2. 查看官网的注意事项, 执行必要项
  3. 配置开发环境(配置.framework形式开发包)

二. Hello BaiduMap

  1. 显示出mapView
  2. 一些简单的功能按钮
  3. 添加Annotation
  4. 搜索地点
  5. 公交路线
  6. 解析地址
  7. 反向地理编码结果

一. 前期准备

1. 注册成为开发者, 申请Key

2. 查看官网的注意事项, 执行必要项

1.保证工程中至少有一个.mm后缀的源文件
4.管理地图的生命周期(不确定是否需要执行该条)
5.NSLocationWhenInUseUsageDescription
6.因为我们使用的是Xcode6版本, 在info.plist中添加:Bundle display name ,且其值不能为空

3. 配置开发环境(配置.framework形式开发包)

1.导入BaiduMapAPI.framework(注意模拟器和真机的区别)
2.引入所需的系统库CoreLocation.frameworkQuartzCore.frameworkOpenGLES.frameworkSystemConfiguration.frameworkCoreGraphics.frameworkSecurity.framework, 添加方式:在Xcode的Project -> Target ->Build Phases ->Link Binary With Libraries

  1. 环境配置: 在TARGETS->Build Settings->Other Linker Flags 中添加-ObjC(注意大小写)
  2. 导入mapapi.bundle资源文件
  3. 在需要的文件中引入头文件#import <BaiduMapAPI/BMapKit.h>//引入所有的头文件

二. Hello BaiduMap

1. 显示出mapView
#import "ViewController.h"
#import <BaiduMapAPI/BMapKit.h> // 引入所有的头文件

#define kBDMapKey (@"6RFRv4EiqQbn6V0IhDiA7zjc")

@interface ViewController () 
{
    BMKMapManager *_mapManager;
    BMKMapView *_mapView;
}

@end

@implementation ViewController
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    _mapManager = [[BMKMapManager alloc]init];
    
    // 如果要关注网络及授权验证事件,请设定 generalDelegateb参数
    BOOL ret = [_mapManager start:kBDMapKey  generalDelegate:nil];
    if (!ret) {
        NSLog(@"manager start failed!");
    } else {
        NSLog(@"manager has started!");
    }
    
    [self createMapView];
}

- (void)createMapView
{
    _mapView = [[BMKMapView alloc] initWithFrame:CGRectMake(0, 100, 320, 468)];
    [self.view addSubview:_mapView];
}
显示地图.png
2. 一些简单的功能按钮
- (void)viewDidLoad {
    …………………………………………………………………………………………  
    
    [self createBtns];
}

- (void)createBtns
{
    UIButton *addSearchButton = [MyUtility createButtonWithFrame:CGRectMake(10, 30, 60, 20) title:@"搜地址" backgroundImageName:nil target:self action:@selector(searchPalce)];
    UIButton *geocoderButton = [MyUtility createButtonWithFrame:CGRectMake(80, 30, 60, 20) title:@"解析" backgroundImageName:nil target:self action:@selector(geocoderAction)];
    UIButton *reverseGeocoderButton = [MyUtility createButtonWithFrame:CGRectMake(150, 30, 60, 20) title:@"反解析" backgroundImageName:nil target:self action:@selector(reverseGeocoderAction)];
    UIButton *mapTypeButton = [MyUtility createButtonWithFrame:CGRectMake(220, 30, 60, 20) title:@"卫星图" backgroundImageName:nil target:self action:@selector(mapTypeAction)];
    UIButton *trafficButton = [MyUtility createButtonWithFrame:CGRectMake(10, 60, 60, 20) title:@"路况" backgroundImageName:nil target:self action:@selector(trafficAction)];
    UIButton *heatMapButton = [MyUtility createButtonWithFrame:CGRectMake(80, 60, 60, 20) title:@"热力图" backgroundImageName:nil target:self action:@selector(heatMapAction)];
    
    [self.view addSubview:addSearchButton];
    [self.view addSubview:geocoderButton];
    [self.view addSubview:reverseGeocoderButton];
    [self.view addSubview:mapTypeButton];
    [self.view addSubview:trafficButton];
    [self.view addSubview:heatMapButton];
}

// 是否打开热力图
- (void)heatMapAction
{
    //打开百度城市热力图图层(百度自有数据)
    // [_mapView setBaiduHeatMapEnabled:YES];
    (_mapView.baiduHeatMapEnabled == 1)? (_mapView.baiduHeatMapEnabled = 0): (_mapView.baiduHeatMapEnabled = 1);
}

// 是否打开路况
- (void)trafficAction
{
    // [_mapView setTrafficEnabled:YES];
    (_mapView.trafficEnabled == 1)? (_mapView.trafficEnabled = 0): (_mapView.trafficEnabled = 1);
}

// 地图类型
- (void)mapTypeAction
{
    /*
     BMKMapTypeStandard   = 1,               ///< 标准地图
     BMKMapTypeSatellite  = 2
     */
    (_mapView.mapType == 1)? (_mapView.mapType = 2): (_mapView.mapType = 1);
}  
切换卫星图/普通视图.png
路况.png
热力图.png
3. 添加Annotation
@interface ViewController () <BMKMapViewDelegate>  
…………………………………………………………………………………………  

- (void)viewDidLoad {
    …………………………………………………………………………………………  
    
    [self createAnnotations];
}

- (void)createAnnotations
{
    // 添加PointAnnotation
    BMKPointAnnotation *annotationJiaxing = [[BMKPointAnnotation alloc]  init];
    annotationJiaxing.coordinate = CLLocationCoordinate2DMake(30.77, 120.76);
    annotationJiaxing.title = @"嘉兴";
    
    BMKPointAnnotation *annotationShanghai = [[BMKPointAnnotation alloc]  init];
    annotationShanghai.coordinate = CLLocationCoordinate2DMake(31, 121);
    annotationShanghai.title = @"上海";
    
    [_mapView addAnnotation:annotationJiaxing];
    [_mapView addAnnotation:annotationShanghai];
}  

#pragma mark - BMKMapViewDelegate
- (BMKAnnotationView *)mapView:(BMKMapView *)mapView viewForAnnotation:(id <BMKAnnotation>)annotation
{
    if ([annotation isKindOfClass:[BMKPointAnnotation class]]) {
        BMKPinAnnotationView *newAnnotationView = [[BMKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"myAnnotation"];
        newAnnotationView.pinColor = BMKPinAnnotationColorPurple;
        newAnnotationView.animatesDrop = YES;// 设置该标注点动画显示
        return newAnnotationView;
    }
    
    return nil;
}
4. 搜索地点
@interface ViewController () <BMKMapViewDelegate, BMKPoiSearchDelegate>
{
    BMKMapManager *_mapManager;
    BMKMapView *_mapView;
    BMKPoiSearch *_searcher;
}

- (void)searchPalce
{
    //初始化检索对象
    _searcher =[[BMKPoiSearch alloc]init];
    _searcher.delegate = self;
    //发起检索
    BMKNearbySearchOption *option = [[BMKNearbySearchOption alloc]init];
    option.pageCapacity = 10;
    option.location = CLLocationCoordinate2DMake(39.915, 116.404);
    option.keyword = @"江南";
    BOOL flag = [_searcher poiSearchNearBy:option];
    if (flag)
    {
        NSLog(@"周边检索发送成功");
    }
    else
    {
        NSLog(@"周边检索发送失败");
    }
}  
  
#pragma mark - BMKPoiSearchDelegate
- (void)onGetPoiResult:(BMKPoiSearch*)searcher result:(BMKPoiResult*)poiResultList errorCode:(BMKSearchErrorCode)error
{
    if (error == BMK_SEARCH_NO_ERROR) {
        //在此处理正常结果
        
        NSMutableArray *array = [NSMutableArray array];
        for (BMKPoiInfo *poi in poiResultList.poiInfoList) {
            // 创建一个大头针对象
            BMKPointAnnotation *anno = [[BMKPointAnnotation alloc] init];
            anno.coordinate = CLLocationCoordinate2DMake(poi.pt.latitude, poi.pt.longitude);
            anno.title = poi.name;
            anno.subtitle = poi.city;
            
            [array addObject:anno];
        }
        
        // 移除之前的大头针
        [_mapView removeAnnotations:_mapView.annotations];
        // 添加到地图上
        [_mapView addAnnotations:array];
    }
    else if (error == BMK_SEARCH_AMBIGUOUS_KEYWORD){
        //当在设置城市未找到结果,但在其他城市找到结果时,回调建议检索城市列表
        // result.cityList;
        NSLog(@"起始点有歧义");
    } else {
        NSLog(@"抱歉,未找到结果");
    }
}
搜地址.png
5. 公交路线
@interface ViewController <……, BMKRouteSearchDelegate>  
- (void)createBtns
{
    …………………………………………………………………………………………
    UIButton *metroButton = [MyUtility createButtonWithFrame:CGRectMake(150, 60, 60, 20) title:@"公交" backgroundImageName:nil target:self action:@selector(metroAction)];
    [self.view addSubview:metroButton];
}  
  
- (void)metroAction
{
    //初始化检索对象
    BMKRouteSearch *routeSearch = [[BMKRouteSearch alloc]init];
    routeSearch.delegate = self;

    //发起检索
    BMKPlanNode* start = [[BMKPlanNode alloc] init] ;
    start.name = @"水产路";
    BMKPlanNode* end = [[BMKPlanNode alloc] init];
    end.name = @"江浦路";
    BMKTransitRoutePlanOption *transitRouteSearchOption = [[BMKTransitRoutePlanOption alloc]init];
    transitRouteSearchOption.city= @"上海市";
    transitRouteSearchOption.from = start;
    transitRouteSearchOption.to = end;
    BOOL flag = [routeSearch transitSearch:transitRouteSearchOption];
    
    if(flag)
    {
        NSLog(@"bus检索发送成功");
    }
    else
    {
        NSLog(@"bus检索发送失败");
    }
}
  
#pragma mark - BMKRouteSearchDelegate
-(void)onGetTransitRouteResult:(BMKRouteSearch*)searcher result:(BMKTransitRouteResult*)result
                     errorCode:(BMKSearchErrorCode)error
{
    if (error == BMK_SEARCH_NO_ERROR) {
        //在此处理正常结果
        
        for (BMKTransitRouteLine *line in result.routes) {
//            ///路线长度 单位: 米
//            @property (nonatomic) int distance;
//            ///路线耗时 单位: 秒
//            @property (nonatomic, strong) BMKTime* duration;
//            ///路线起点信息
//            @property (nonatomic, strong) BMKRouteNode* starting;
//            ///路线终点信息
//            @property (nonatomic, strong) BMKRouteNode* terminal;
            NSString *routeDescription = [NSString stringWithFormat:@"路程长度: %d\n路线耗时: %d小时%d分%d秒", line.distance, line.duration.hours, line.duration.minutes, line.duration.seconds];
            NSLog(@"%@", routeDescription);
        }
    }
    else if (error == BMK_SEARCH_AMBIGUOUS_ROURE_ADDR){
        //当路线起终点有歧义时通,获取建议检索起终点
        //result.routeAddrResult
    }
    else {
        NSLog(@"抱歉,未找到结果");
    }
}
6. 解析地址
@interface ViewController () <……, BMKGeoCodeSearchDelegate>  
- (void)geocoderAction
{
    BMKGeoCodeSearch *geocoderSearcher =[[BMKGeoCodeSearch alloc]init];
    geocoderSearcher.delegate = self;
    BMKGeoCodeSearchOption *geoCodeSearchOption = [[BMKGeoCodeSearchOption alloc]init];
    geoCodeSearchOption.city= @"上海市";
    geoCodeSearchOption.address = @"田子坊";
    BOOL flag = [geocoderSearcher geoCode:geoCodeSearchOption];
    if (flag)
    {
        NSLog(@"geo检索发送成功");
    }
    else
    {
        NSLog(@"geo检索发送失败");
    }

}
  
#pragma mark - BMKGeoCodeSearchDelegate
- (void)onGetGeoCodeResult:(BMKGeoCodeSearch *)searcher result:(BMKGeoCodeResult *)result errorCode:(BMKSearchErrorCode)error{
    if (error == BMK_SEARCH_NO_ERROR) {
        //在此处理正常结果
        
        // 创建大头针
        BMKPointAnnotation *anno = [[BMKPointAnnotation alloc] init];
        anno.coordinate = CLLocationCoordinate2DMake(result.location.latitude, result.location.longitude);
        anno.title = result.address;
            
        // 移除之前的大头针
        [_mapView removeAnnotations:_mapView.annotations];
        // 添加到地图上
        [_mapView addAnnotation:anno];

    }
    else {
        NSLog(@"抱歉,未找到结果");
    }
}
解析地址.png
7. 反向地理编码结果
- (void)reverseGeocoderAction
{
//    (latitude = 31.214260914625513, longitude = 121.47498064783355)
//    乌镇: 东经120°54′,北纬30°64′
    
    BMKGeoCodeSearch *geocoderSearcher =[[BMKGeoCodeSearch alloc]init];
    geocoderSearcher.delegate = self;

    //发起反向地理编码检索
    CLLocationCoordinate2D pt = (CLLocationCoordinate2D){30.5, 120.5};
    BMKReverseGeoCodeOption *reverseGeoCodeSearchOption = [[BMKReverseGeoCodeOption alloc] init];
    reverseGeoCodeSearchOption.reverseGeoPoint = pt;
    BOOL flag = [geocoderSearcher reverseGeoCode:reverseGeoCodeSearchOption];
    if(flag)
    {
      NSLog(@"反geo检索发送成功");
    }
    else
    {
      NSLog(@"反geo检索发送失败");
    }
}
  
// 接收反向地理编码结果
- (void)onGetReverseGeoCodeResult:(BMKGeoCodeSearch *)searcher result:(BMKReverseGeoCodeResult *)result
errorCode:(BMKSearchErrorCode)error {
  if (error == BMK_SEARCH_NO_ERROR) {
      
      // 在此处理正常结果
      NSLog(@"%@", result.address);
      
      //发起检索
      BMKNearbySearchOption *option = [[BMKNearbySearchOption alloc]init];
      option.pageCapacity = 10;
      option.location = result.location;
      option.keyword = @"乌镇";
      BOOL flag = [_searcher poiSearchNearBy:option];
      if (flag)
      {
          NSLog(@"周边检索发送成功");
      }
      
  }
  else {
      NSLog(@"抱歉,未找到结果");
  }
}
反解析地址.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,189评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,577评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,857评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,703评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,705评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,620评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,995评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,656评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,898评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,639评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,720评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,395评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,982评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,953评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,195评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,907评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,472评论 2 342

推荐阅读更多精彩内容