1.申请秘钥
1.1 打开百度开放平台 百度地图API-首页
1.2 登录账号
1.3 进入API控制台
1.4 创建应用
2 项目名称任意,只是做区分
4 默认全选
5 填项目的Bundle Identifier
1.5 复制秘钥
2 导入SDK
本人使用的cocoapods安装的SDK ,打开终端,依次执行指令
1 cd 项目文件夹
2 vim Podfile // 创建Podfile文件
3 i // 插入
4 输入下面内容:
platform :ios,'8.0'
target 'AnnaMapTest' do
pod 'BaiduMapKit'
end
5 ESC // 退出编辑
6 :wq // 保存退出
7 pod install --verbose --no-repo-update // 导入
3 配置项目环境
3.1 在info.plist 中添加配置定位权限,这一步不做会导致不能正常使用定位等功能,未来上架也会被拒绝
Privacy - Location When In Use Usage Description 允许App在使用时获取GPS的描述
Privacy - Location Always Usage Description 允许永久使用GPS的描述
3.2 如果在iOS9中使用了调起百度地图客户端功能,必须在"Info.plist"中进行如下配置
<key>LSApplicationQueriesSchemes</key>
<array>
<string>baidumap</string>
</array>
3.3 导入所需的系统库
Project -> Target ->Build Phases ->Link Binary With Libraries
CoreLocation.framework
QuartzCore.framework
OpenGLES.framework
SystemConfiguration.framework
CoreGraphics.framework
Security.framework
libsqlite3.0.tbd(xcode7以前为 libsqlite3.0.dylib)
CoreTelephony.framework
libstdc++.6.0.9.tbd(xcode7以前为libstdc++.6.0.9.dylib)
3.4 导入所需的第三方openssl库
Target->Build Phases-> Link Binary With Libaries中点击“+”按钮,在弹出的窗口中点击“Add Other”按钮,搜索,添加到工程中。
libssl.a
libcrypto.a
4 引入头文件
在使用地图的类可选择性引入下面头文件
#import <BaiduMapAPI_Base/BMKBaseComponent.h>//引入base相关所有的头文件
#import <BaiduMapAPI_Map/BMKMapComponent.h>//引入地图功能所有的头文件
#import <BaiduMapAPI_Search/BMKSearchComponent.h>//引入检索功能所有的头文件
#import <BaiduMapAPI_Cloud/BMKCloudSearchComponent.h>//引入云检索功能所有的头文件
#import <BaiduMapAPI_Location/BMKLocationComponent.h>//引入定位功能所有的头文件
#import <BaiduMapAPI_Utils/BMKUtilsComponent.h>//引入计算工具所有的头文件
#import <BaiduMapAPI_Radar/BMKRadarComponent.h>//引入周边雷达功能所有的头文件
#import <BaiduMapAPI_Map/BMKMapView.h>//只引入所需的单个头文件
5 初始化地图
AppDelegate.m
@interface AppDelegate ()<BMKGeneralDelegate>
{
BMKMapManager *_mapManager;
}
在didFinishLaunchingWithOptions 中添加以下代码
// 要使用百度地图,请先启动BaiduMapManager
_mapManager = [[BMKMapManager alloc]init];
// 如果要关注网络及授权验证事件,请设定generalDelegate参数
BOOL ret = [_mapManager start:@"sFNQNkT9iovqzfF6jrYo4Ejm0zg1iEiW" generalDelegate:nil];
if (!ret) {
NSLog(@"manager start failed!");
}
ViewController.m
注意: 管理地图的生命周期:自2.0.0起,BMKMapView新增viewWillAppear、viewWillDisappear方法来控制BMKMapView的生命周期,并且在一个时刻只能有一个BMKMapView接受回调消息,因此在使用BMKMapView的viewController中需要在viewWillAppear、viewWillDisappear方法中调用BMKMapView的对应的方法,并处理delegate.
-(void)viewWillAppear:(BOOL)animated
{
[_mapView viewWillAppear];
_mapView.delegate = self; // 此处记得不用的时候需要置nil,否则影响内存的释放
_locService.delegate = self;
}
-(void)viewWillDisappear:(BOOL)animated
{
[_mapView viewWillDisappear];
_mapView.delegate = nil; // 不用时,置nil
}
- (void)viewDidLoad {
[super viewDidLoad];
_mapView = [[BMKMapView alloc]initWithFrame:CGRectMake(0, 100, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height-100)];
[self.view addSubview:_mapView];
[self addBtn];
}
- (void)dealloc {
if (mapView) {
mapView = nil;
}
}
此时地图的显示变完成了。