1、注意事项
(1)、管理地图的生命周期:
自2.0.0起,BMKMapView新增viewWillAppear、viewWillDisappear方法来控制BMKMapView的生命周期,并且在一个时刻只能有一个BMKMapView接受回调消息,因此在使用BMKMapView的viewController中需要在viewWillAppear、viewWillDisappear方法中调用BMKMapView的对应的方法,并处理delegate,代码如下:
-(void)viewWillAppear:(BOOL)animated {
[_mapViewviewWillAppear];
_mapView.delegate= self; // 此处记得不用的时候需要置nil,否则影响内存的释放
}
-(void)viewWillDisappear:(BOOL)animated {
[_mapViewviewWillDisappear];
_mapView.delegate= nil; // 不用时,置nil
}
(2)、自iOSSDK v2.5.0起,为了对iOS8的定位能力做兼容,做了相应的修改,开发者在使用过程中注意事项如下:
需要在info.plist里添加(以下二选一,两个都添加默认使用NSLocationWhenInUseUsageDescription):
NSLocationWhenInUseUsageDescription,允许在前台使用时获取GPS的描述
NSLocationAlwaysUsageDescription,允许永久使用GPS的描述
2、申请密钥
百度地图iOSSDK开发密钥的申请地址为:http://lbsyun.baidu.com/apiconsole/key
3、配置开发环境
自动配置.framework形式开发包(使用CocoaPods)
1.创建Podfile:
touchPodfile
2.编辑Podfile内容如下:
pod 'BaiduMapKit' #百度地图SDK
3.在Podfile所在的文件夹下输入命令:
pod install (这个可能比较慢,请耐心等待……)
成功
4、基础地图
1、在AppDelegate.h文件中添加BMKMapManager的定义
@interfaceBaiduMapApiDemoAppDelegate:NSObject {
UIWindow*window;
UINavigationController*navigationController;
BMKMapManager* _mapManager;
}
2、在AppDelegate.m文件中添加对BMKMapManager的初始化,并填入申请的授权Key,示例如下
- (BOOL)application:(UIApplication*)applicationdidFinishLaunchingWithOptions:(NSDictionary*)launchOptions{
// 要使用百度地图,请先启动BaiduMapManager_mapManager= [[BMKMapManageralloc]init];
// 如果要关注网络及授权验证事件,请设定generalDelegate参数
BOOL ret = [_mapManagerstart:@"在此处输入授权Key"generalDelegate:nil];
if(!ret) {
NSLog(@"manager start failed!");
}
// Add the navigation controller's view to the window and display.
[self.windowaddSubview:navigationController.view]; [self.windowmakeKeyAndVisible];
returnYES;
}
3、在ViewController.m文件中添加BMKMapView的创建代码,示例如下
- (void)viewDidLoad{
[superviewDidLoad];
BMKMapView*mapView= [[BMKMapViewalloc]initWithFrame:CGRectMake(0, 0, 320, 480)];
self.view=mapView;
}
4、自2.0.0起,BMKMapView新增viewWillAppear、viewWillDisappear方法来控制BMKMapView的生命周期,并且在一个时刻只能有一个BMKMapView接受回调消息,因此在使用BMKMapView的viewController中需要在viewWillAppear、viewWillDisappear方法中调用BMKMapView的对应的方法,并处理delegate,代码如下:
-(void)viewWillAppear:(BOOL)animated {
[_mapViewviewWillAppear];
_mapView.delegate= self; // 此处记得不用的时候需要置nil,否则影响内存的释放
}
-(void)viewWillDisappear:(BOOL)animated {
[_mapViewviewWillDisappear];
_mapView.delegate= nil; // 不用时,置nil
}
5、POI检索功能
POI(Point of Interest),中文可以翻译为“兴趣点”。在地理信息系统中,一个POI可以是一栋房子、一个商铺、一个邮筒、一个公交站等。
百度地图SDK提供三种类型的POI检索:周边检索、区域检索和城市内检索。下面以周边检索为例,介绍如何使用检索服务。
-(void)viewDidLoad{
//初始化检索对象
_searcher=[[BMKPoiSearchalloc]init];
_searcher.delegate= self;
//发起检索
BMKNearbySearchOption*option = [[BMKNearbySearchOptionalloc]init];
option.pageIndex=curPage;
option.pageCapacity= 10;
option.location= CLLocationCoordinate2D{39.915, 116.404};
option.keyword= @"小吃";
BOOL flag = [_searcherpoiSearchNearBy:option];
[optionrelease];
if(flag) {
NSLog(@"周边检索发送成功");
}else{
NSLog(@"周边检索发送失败");
}
}
//实现PoiSearchDeleage处理回调结果
- (void)onGetPoiResult:(BMKPoiSearch*)searcher result:(BMKPoiResult*)poiResultListerrorCode:(BMKSearchErrorCode)error {
if(error == BMK_SEARCH_NO_ERROR) {
//在此处理正常结果
}elseif (error == BMK_SEARCH_AMBIGUOUS_KEYWORD){
//当在设置城市未找到结果,但在其他城市找到结果时,回调建议检索城市列表
//result.cityList;
NSLog(@"起始点有歧义");
}else{
NSLog(@"抱歉,未找到结果");
}
}
//不使用时将delegate设置为nil-(void)viewWillDisappear:(BOOL)animated {
_searcher.delegate= nil;
}
以上介绍了POI检索功能的使用方法,百度地图SDK,还开放了POI详情信息的检索,提供更多的LBS数据支持。
POI详情检索的实现方式如下:
第一步,发起检索:
//初始化检索服务
_poisearch= [[BMKPoiSearchalloc]init];
_poisearch.delegate= self;
//POI详情检索BMKPoiDetailSearchOption* option = [[BMKPoiDetailSearchOptionalloc]init];
option.poiUid= @”此处为POI的uid”;
//POI搜索结果中获取的uid
BOOL flag = [_poisearchpoiDetailSearch:option];
[optionrelease];
if(flag) {
//详情检索发起成功
}else{
//详情检索发送失败
}
第二步,设置结果监听:
-(void)onGetPoiDetailResult:(BMKPoiSearch*)searcher result:(BMKPoiDetailResult*)poiDetailResulterrorCode:(BMKSearchErrorCode)errorCode{
if(errorCode== BMK_SEARCH_NO_ERROR){
//在此处理正常结果
}
}
6、定位功能
1、获取位置信息
定位功能可以和地图功能分离使用,单独的定位功能使用方式如下:
-(void)viewDidLoad{
//初始化BMKLocationService
_locService= [[BMKLocationServicealloc]init];
_locService.delegate= self;
//启动LocationService
[_locServicestartUserLocationService];
}
//实现相关delegate 处理位置信息更新
//处理方向变更信息
-(void)didUpdateUserHeading:(BMKUserLocation*)userLocation{
//NSLog(@"heading is %@",userLocation.heading);
}
//处理位置坐标更新
-(void)didUpdateBMKUserLocation:(BMKUserLocation*)userLocation{
//NSLog(@"didUpdateUserLocationlat%f,long%f",userLocation.location.coordinate.latitude,userLocation.location.coordinate.longitude);
}
2、展示定位信息
展示定位信息的功能位于 “基础地图(Map)”这个功能模块,使用时请注意选择。
核心代码如下:
//普通态
//以下_mapView为BMKMapView对象 _
mapView.showsUserLocation= YES;
//显示定位图层
[_mapViewupdateLocationData:userLocation];
7、计算工具
根据用户指定的两个坐标点,计算这两个点的实际地理距离。核心代码如下:
BMKMapPointpoint1 =BMKMapPointForCoordinate(CLLocationCoordinate2DMake(39.915,116.404));
BMKMapPointpoint2 =BMKMapPointForCoordinate(CLLocationCoordinate2DMake(38.915,115.404));
CLLocationDistancedistance =BMKMetersBetweenMapPoints(point1,point2);