今天和大家分享:集成百度地图iOS SDK,实现在线建议查询地址。这是我的github源码,使用oc纯代码编写,部署版本是ios8,大家可以下载运行代码;
一、配置开发环境
进入百度地图开发者中心根据步骤即可实现。我是使用CocoaPods导入地图SDK(没有安装CocoaPods,可以根据这篇文章使用CocoaPods安装和使用教程),而且我也极力推荐大家使用CocoaPods来管理第三方库;
我主要讲一下注意点:
注意一:务必在info.plist文件配置
NSAppTransportSecurity
NSAllowsArbitraryLoads
注意二:按需引入SDK中的头文件,不要把所有的头文件包含进来,这样会导致编译时间延长,如下实现在线建议查询地址我这项目中只需要引入连个头文件即可
#import //引入检索功能所有的头文件
#import //引入定位功能所有的头文件
注意三: info.plist文件记得添加另外两个key-value,
打开定位服务
*需要在info.plist文件中添加(以下二选一,两个都添加默认使用NSLocationWhenInUseUsageDescription):
*NSLocationWhenInUseUsageDescription 允许在前台使用时获取GPS的描述
*NSLocationAlwaysUsageDescription 允许永远可获取GPS的描述
添加Bundle display name
care.png
二、代码实现
先简要介绍下项目的各个类,如下图
introduction.png
主要介绍下LocationManager类是对开始定位和停止定位封装好的单例,主要有三个方法:
/**
* 开始定位
*/
- (void)startLocation;
/**
* 停止定位
*/
- (void)stopLocation;
/**
* 判断是否授权开启定位
*/
- (BOOL)isAuthorizeOpenLocation;
1、在AppDelegate.m文件中
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// 要使用百度地图,请先启动BaiduMapManager
_mapManager = [[BMKMapManager alloc]init];
BOOL ret = [_mapManager start:BMAppKey generalDelegate:self];
if (!ret) {
NSLog(@"manager start failed!");
}
// 程序一启动开始定位
[[LocationManager shareLocationManager] startLocation];
// 1.初始化窗口
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
// 2.设置窗口根控制器
self.window.rootViewController = [[UINavigationController alloc] initWithRootViewController:[[SelectAddressTableViewController alloc] init]];
// 3.显示窗口
[self.window makeKeyAndVisible];
return YES;
}
2、LocationManager中的startLocation方法中获取位置信息
//初始化BMKLocationService
- (instancetype)init {
if (self = [super init]) {
//初始化BMKLocationService
_locService = [[BMKLocationService alloc]init];
_locService.delegate = self;
// 设定定位的最小更新距离(米),更新频率。默认为kCLDistanceFilterNone
_locService.distanceFilter = 100.0f;
// 设定定位精度。默认为kCLLocationAccuracyBest。
_locService.desiredAccuracy = kCLLocationAccuracyNearestTenMeters; // 定位精度10m
_geoSearcher = [[BMKGeoCodeSearch alloc] init];
_geoSearcher.delegate = self;
}
return self;
}
- (void)startLocation {
if ([self isAuthorizeOpenLocation]) { // 已经授权定位
//启动LocationService
[_locService startUserLocationService];
} else {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"定位服务未开启" message:@"请在设置中开启定位服务" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"去设置", nil];
[alert show];
}
}
// 判断是否授权开启定位
- (BOOL)isAuthorizeOpenLocation {
if ([CLLocationManager locationServicesEnabled] &&
([CLLocationManager authorizationStatus] == kCLAuthorizationStatusAuthorizedAlways
|| [CLLocationManager authorizationStatus] == kCLAuthorizationStatusNotDetermined || [CLLocationManager authorizationStatus] == kCLAuthorizationStatusAuthorizedWhenInUse)) {
return YES;
}
return NO;
}
在回调方法中
//处理位置坐标更新
- (void)didUpdateBMKUserLocation:(BMKUserLocation *)userLocation
{
}
3、发起反向地理编码检索
//处理位置坐标更新
- (void)didUpdateBMKUserLocation:(BMKUserLocation *)userLocation
{
// NSLog(@"didUpdateUserLocation lat %f,long %f",userLocation.location.coordinate.latitude,userLocation.location.coordinate.longitude);
//发起反向地理编码检索
_geoSearcher = [[BMKGeoCodeSearch alloc] init];
_geoSearcher.delegate = self;
CLLocationCoordinate2D pt = (CLLocationCoordinate2D){userLocation.location.coordinate.latitude, userLocation.location.coordinate.longitude};
BMKReverseGeoCodeOption *reverseGeoCodeSearchOption = [[
BMKReverseGeoCodeOption alloc] init];
reverseGeoCodeSearchOption.reverseGeoPoint = pt;
BOOL flag = [_geoSearcher 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.addressDetail.city, result.address);
if ([[[NSUserDefaults standardUserDefaults] valueForKey:@"UserCurrentAddress"] isEqualToString:result.address]) { // 用户当前位置与沙河存储位置相同
// 关闭定位服务LocationService
[self stopLocation];
} else {
[[NSUserDefaults standardUserDefaults] setValue:result.addressDetail.city forKey:@"UserCurrentCity"]; // 将用户城市位置存储,以便后面进行设置地址时的city
[[NSUserDefaults standardUserDefaults] setValue:result.address forKey:@"UserCurrentAddress"];
}
}
else {
[self startLocation];
NSLog(@"抱歉,未找到结果");
}
}
具体代码实现可以github源码上面下载