接口说明

百度地图API提供的搜索服务包括:POI检索,多关键字检索,公交方案检索,驾车路线检索,步行路线检索,地理编码,反地理编码,公交详情检索,在线建议查询,短串分享。 
所有检索请求接口均为异步接口,您必须实现BMKSearchDelegate协议,在一个时刻只能有一个BMKSearch接受回调消息,因此如果在不同的viewController中使用多个BMKSearch,需要在页面切换对BMKSearch的delegate做处理,代码如下:

  1. -(void)viewWillAppear:(BOOL)animated
  2. {
  3. _search.delegate = self;
  4. }
  5. -(void)viewWillDisappear:(BOOL)animated
  6. {
  7. _search.delegate = nil;
  8. }

在检索到结果后,API会回调BMKSearchDelegate对应的接口,通知调用者检索结果数据。
BMKSearchDelegate对应的接口如下:

  1. /**
  2. *返回POI搜索结果
  3. *@param poiResultList 搜索结果列表,成员类型为BMKPoiResult
  4. *@param type 返回结果类型: BMKTypePoiList,BMKTypeAreaPoiList,BMKAreaMultiPoiList
  5. *@param error 错误号,@see BMKErrorCode
  6. */
  7. - (void)onGetPoiResult:(NSArray*)poiResultList searchType:(int)type errorCode:(int)error{
  8. }
  9. /**
  10. *返回公交搜索结果
  11. *@param result 搜索结果
  12. *@param error 错误号,@see BMKErrorCode
  13. */
  14. - (void)onGetTransitRouteResult:(BMKPlanResult*)result errorCode:(int)error{
  15. }
  16. /**
  17. *返回驾乘搜索结果
  18. *@param result 搜索结果
  19. *@param error 错误号,@see BMKErrorCode
  20. */
  21. - (void)onGetDrivingRouteResult:(BMKPlanResult*)result errorCode:(int)error{
  22. }
  23. /**
  24. *返回步行搜索结果
  25. *@param result 搜索结果
  26. *@param error 错误号,@see BMKErrorCode
  27. */
  28. - (void)onGetWalkingRouteResult:(BMKPlanResult*)result errorCode:(int)error{
  29. }
  30. /**
  31. *返回地址信息搜索结果
  32. *@param result 搜索结果
  33. *@param error 错误号,@see BMKErrorCode
  34. */
  35. - (void)onGetAddrResult:(BMKAddrInfo*)result errorCode:(int)error{
  36. }
  37. /**
  38. *返回公交详情搜索结果
  39. *@param result 搜索结果
  40. *@param error 错误号,@see BMKErrorCode
  41. */
  42. - (void)onGetBusDetailResult:(BMKBusLineResult*)result errorCode:(int)error{
  43. }
  44. /**
  45. *返回suggestion搜索结果
  46. *@param result 搜索结果
  47. *@param error 错误号,@see BMKErrorCode
  48. */
  49. - (void)onGetSuggestionResult:(BMKSuggestionResult*)result errorCode:(int)error{
  50. }
  51. /**
  52. *返回poi详情分享url
  53. *@param url 返回结果url
  54. *@param error 错误号,@see BMKErrorCode
  55. */
  56. - (void)onGetShareUrl:(NSString*) url withType:(BMK_SHARE_URL_TYPE) urlType errorCode:(int)error {
  57. }

POI检索

百度地图API提供以下几类POI检索类型:城市内检索,周边检索,范围检索,多关键字检索。 
此处以城市内检索为例说明: 
在ViewController.h中声明BMKSearch对象,并将ViewController实现BMKSearchDelegate协议,代码如下:

  1. @interface PoiSearchDemoViewController : UIViewController<BMKMapViewDelegate, BMKSearchDelegate> {
  2. IBOutlet BMKMapView* _mapView;
  3. BMKSearch* _search;
  4. }

在ViewController.m的viewDidLoad中创建BMKSearch对象,设置对应的delegate,并实现BMKSearchDelegate协议中获取POI结果的方法,代码如下:

  1. - (void)viewDidLoad {
  2. [super viewDidLoad];
  3. _search = [[BMKSearch alloc]init];
  4. _search.delegate = self;
  5. //发起POI检索
  6. [_search poiSearchInCity:@"北京" withKey:@"西单" pageIndex:0];
  7. }
  8. - (void)onGetPoiResult:(NSArray*)poiResultList searchType:(int)type errorCode:(int)error
  9. {
  10. if (error == BMKErrorOk) {
  11. BMKPoiResult* result = [poiResultList objectAtIndex:0];
  12. for (int i = 0; i < result.poiInfoList.count; i++) {
  13. BMKPoiInfo* poi = [result.poiInfoList objectAtIndex:i];
  14. BMKPointAnnotation* item = [[BMKPointAnnotation alloc]init];
  15. item.coordinate = poi.pt;
  16. item.title = poi.name;
  17. [_mapView addAnnotation:item];
  18. [item release];
  19. }
  20. }
  21. }

运行效果如图: 
示例代码请参考相关下载demo工程中的PoiSearchDemoViewController.mm文件

公交方案检索

在ViewController.h中声明BMKSearch对象,并将ViewController实现BMKSearchDelegate协议,代码参考Demo中的示例代码.
在ViewController.m中创建BMKSearch对象,设置对应的delegate,并实现BMKSearchDelegate协议中获取公交路线结果的方法,代码如下:

  1. - (void)viewDidLoad {
  2. [super viewDidLoad];
  3. _search = [[BMKSearch alloc]init];
  4. _search.delegate = self;
  5. //发起公交检索
  6. BMKPlanNode* start = [[BMKPlanNode alloc]init];
  7. start.name = @"天安门";
  8. BMKPlanNode* end = [[BMKPlanNode alloc]init];
  9. end.name = @"百度大厦";
  10. [_search transitSearch:@"北京" startNode:start endNode:end];
  11. [start release];
  12. [end release];
  13. }
  14. - (void)onGetTransitRouteResult:(BMKPlanResult*)result errorCode:(int)error
  15. {
  16. // 在此处添加您对公交方案结果的处理
  17. }

将公交方案对应的路线和关键点绘制在地图上,效果如下图:
 
示例代码请参考相关下载demo工程中的RouteSearchDemoViewController.mm文件

驾车路线检索

在ViewController.h中声明BMKSearch对象,并将ViewController实现BMKSearchDelegate协议,代码参考Demo中的示例代码.
在ViewController.m中创建BMKSearch对象,设置对应的delegate,并实现BMKSearchDelegate协议中获取驾车路线结果的方法,代码如下:

  1. - (void)viewDidLoad {
  2. [super viewDidLoad];
  3. _search = [[BMKSearch alloc]init];
  4. _search.delegate = self;
  5. //发起公交检索
  6. BMKPlanNode* start = [[BMKPlanNode alloc]init];
  7. start.name = @"天安门";
  8. BMKPlanNode* end = [[BMKPlanNode alloc]init];
  9. end.name = @"百度大厦";
  10. [_search drivingSearch:@"北京" startNode:start endCity:@"北京" endNode:end];
  11. [start release];
  12. [end release];
  13. }
  14. - (void)onGetDrivingRouteResult:(BMKPlanResult*)result errorCode:(int)error
  15. {
  16. // 在此处添加您对驾车方案结果的处理
  17. }

将驾车方案对应的路线和关键点绘制在地图上,效果如下图:
 
示例代码请参考相关下载demo工程中的RouteSearchDemoViewController.mm文件

驾车路线途经点检索

  1. BMKPlanNode* start = [[[BMKPlanNode alloc]init] autorelease];
  2. start.pt = startPt;
  3. start.name = _startAddrText.text;
  4. BMKPlanNode* end = [[[BMKPlanNode alloc]init] autorelease];
  5. end.name = _endAddrText.text;
  6. NSMutableArray * array = [[[NSMutableArray alloc] initWithCapacity:10] autorelease];
  7. BMKPlanNode* wayPoint1 = [[[BMKPlanNode alloc]init] autorelease];
  8. wayPoint1.cityName = @"北京";
  9. wayPoint1.name = @"清华大学";
  10. [array addObject:wayPoint1];
  11. BOOL flag = [_search drivingSearch:_startCityText.text startNode:start endCity:_endCityText.text endNode:end throughWayPoints:array];

注意:途经点传入的数组内容为BMKPlanNode,途经点长度最大限制为10个,超过10个途经点的请求不会被发送。BMKPlanNode数据结构新添加cityName属性,标记途经点的城市,如果不填默认用startCity。

步行路线检索

在ViewController.h中声明BMKSearch对象,并将ViewController实现BMKSearchDelegate协议,代码参考Demo中的示例代码.
在ViewController.m中创建BMKSearch对象,设置对应的delegate,并实现BMKSearchDelegate协议中获取步行路线结果的方法,代码如下:

  1. - (void)viewDidLoad {
  2. [super viewDidLoad];
  3. _mapView.delegate = self;
  4. _search = [[BMKSearch alloc]init];
  5. _search.delegate = self;
  6. //发起步行检索
  7. BMKPlanNode* start = [[BMKPlanNode alloc]init];
  8. start.name = @"天安门";
  9. BMKPlanNode* end = [[BMKPlanNode alloc]init];
  10. end.name = @"百度大厦";
  11. [_search walkingSearch:@"北京" startNode:start endCity:@"北京" endNode:end];
  12. [start release];
  13. [end release];
  14. }
  15. - (void)onGetWalkingRouteResult:(BMKPlanResult*)result errorCode:(int)error
  16. {
  17. // 在此处添加您对步行方案结果的处理
  18. }

将步行方案对应的路线和关键点绘制在地图上,效果如下图:
 
示例代码请参考相关下载demo工程中的RouteSearchDemoViewController.mm文件

地理编码

在ViewController.h中声明BMKSearch对象,并将ViewController实现BMKSearchDelegate协议,代码参考Demo中的示例代码.
在ViewController.m中创建BMKSearch对象,设置对应的delegate,并实现BMKSearchDelegate协议中获取地理编码结果的方法,代码如下:

  1. - (void)viewDidLoad {
  2. [super viewDidLoad];
  3. _mapView.delegate = self;
  4. _search = [[BMKSearch alloc]init];
  5. _search.delegate = self;
  6. //发起地理编码
  7. [_search geocode:@"东长安街33号" withCity:@"北京"];
  8. }
  9. - (void)onGetAddrResult:(BMKAddrInfo*)result errorCode:(int)error
  10. {
  11. // 在此处添加您对地理编码结果的处理
  12. }

完整的示例代码请参考相关下载demo工程中的GeocodeDemoViewController.mm文件

反地理编码

在ViewController.h中声明BMKSearch对象,并将ViewController实现BMKSearchDelegate协议,代码参考Demo中的示例代码.
在ViewController.m中创建BMKSearch对象,设置对应的delegate,并实现BMKSearchDelegate协议中获取反地理编码结果的方法,代码如下:

  1. - (void)viewDidLoad {
  2. [super viewDidLoad];
  3. _search = [[BMKSearch alloc]init];
  4. _search.delegate = self;
  5. //发起反地理编码
  6. CLLocationCoordinate2D pt = (CLLocationCoordinate2D){0, 0};//此处填写想要反地理编码的坐标
  7. BOOL flag = [_search reverseGeocode:pt];
  8. }
  9. - (void)onGetAddrResult:(BMKAddrInfo*)result errorCode:(int)error
  10. {
  11. // 在此处添加您对反地理编码结果的处理
  12. }

完整的示例代码请参考相关下载demo工程中的GeocodeDemoViewController.mm文件

公交详情检索

在ViewController.h中声明BMKSearch对象,并将ViewController实现BMKSearchDelegate协议,代码参考Demo中的示例代码.
在ViewController.m中创建BMKSearch对象,设置对应的delegate,并实现BMKSearchDelegate协议中获取驾车路线结果的方法。发起公交详情搜索前,先进行POI检索,检索结果中poi.epoitype == 2时表示该类型为公交线路,才可发起公交搜索,代码如下:

  1. - (void)viewDidLoad {
  2. [super viewDidLoad];
  3. _search = [[BMKSearch alloc]init];
  4. _search.delegate = self;
  5. //发起poi检索
  6. [_search poiSearchInCity:@"北京" withKey:@"717" pageIndex:0];
  7. }
  8. - (void)onGetPoiResult:(NSArray*)poiResultList searchType:(int)type errorCode:(int)error
  9. {
  10. if (error == BMKErrorOk) {
  11. BMKPoiResult* result = [poiResultList objectAtIndex:0];
  12. for (int i = 0; i < result.poiInfoList.count; i++) {
  13. BMKPoiInfo* poi = [result.poiInfoList objectAtIndex:i];
  14. if(poi.epoitype == 2)
  15. {
  16. break;
  17. }
  18. }
  19. // 发起公交详情搜索
  20. if(poi != nil && poi.epoitype == 2 )
  21. {
  22. NSLog(poi.uid);
  23. BOOL flag = [_search busLineSearch:@"北京"   withKey:poi.uid];
  24. if (!flag) {
  25. NSLog(@"search failed!");
  26. }
  27. }
  28. }
  29. }
  30. - (void)onGetBusDetailResult:(BMKBusLineResult *)busLineResult errorCode:(int)error
  31. {
  32. // 在此处添加您对公交详情结果的处理
  33. }

将公交详情对应的路线和关键点绘制在地图上,效果如下图:
 
示例代码请参考相关下载demo工程中的BusLineSearchViewController.mm文件

在线建议查询

在线建议查询是指根据关键词查询在线建议词,代码如下:

  1. [_search suggestionSearch:@"西单" inCity:@"北京"];

在- (void)onGetSuggestionResult:(BMKSuggestionResult*)result errorCode:(int)error;接口中获取数据。

短串分享

短串分享是指,用户搜索查询后得到的每一个地理位置结果将会对应一条短串(短链接),用户可以通过短信、邮件或第三方分享组件(如微博、微信等)把短串分享给其他用户从而实现地理位置信息的分享。当其他用户收到分享的短串后,点击短串即可打开手机上的百度地图客户端或者手机浏览器进行查看。

例如,用户搜索"百度大厦"后通过短信使用短串分享功能把该地点分享给好友,好友点击短信中的短串"http://j.map.baidu.com/BkmBk"后可以调起百度地图客户端或者手机浏览器查看"百度大厦"的地理位置信息。

目前短串分享功能暂时开放了"POI搜索结果分享"和"反向地理编码结果分享",日后会开放更多的功能,欢迎广大开发者使用短串分享功能。

1、POI搜索结果分享

根据POI检索结果的UID,生成一个短连接,用于分享。方法为:- (BOOL)poiDetailShareUrl:(NSString*) uid;参数uid为待分享POI点的UID,代码如下:

  1. //发起短串搜索获取poi分享url
  2. BOOL flag = [_search poiDetailShareUrl:poi.uid];

2、反向地理编码结果分享

根据反向地理编码结果,生成一个用于分享的短连接。方法为:-(BOOL)reverseGeoShareUrl:(CLLocationCoordinate2D)coorpoiName:(NSString*)namepoiAddress:(NSString*)address;参数location:共享点经纬度坐标;name:共享点的名称;address:共享点的地址。代码如下:

  1. //发起短串搜索获取反geo分享url
  2. BOOL flag = [_search reverseGeoShareUrl:pt poiName:geoName poiAddress:addr];

3、获取短串分享结果

短串请求结果可以在BMKSearchDelegate的onGetShareUrl回调中获得,代码如下:

  1. //返回短串分享url
  2. - (void)onGetShareUrl:(NSString*) url withType:(BMK_SHARE_URL_TYPE) urlType errorCode:(int)error
  3. {
  4. shortUrl = url;
  5. if (error == BMKErrorOk)
  6. {
  7. if(showmeg!=nil)
  8. {
  9. [showmeg release];
  10. showmeg = nil;
  11. }
  12. showmeg = [[NSString stringWithFormat:@"这里是:%@\r\n%@\r\n%@",geoName,addr,short
  13. Url] retain];
  14. UIAlertView *myAlertView = [[UIAlertView alloc] initWithTitle:@"短串分享" message
  15. :showmeg delegate:self cancelButtonTitle:nil otherButtonTitles:@"确定",@"取消",nil];
  16. myAlertView.tag = 1000;
  17. [myAlertView show];
  18. [myAlertView release];
  19. }
  20. }

调启百度导航

百度地图iOS SDK自v2.1.1版本起,为用户提供调启百度导航的能力。调启导航,分为两种:调启百度地图客户端导航和调启百度地图Web导航,用户只需很小的工作量,就可实现驾车路线导航的全套功能。

导航的核心代码如下,详细使用方法请参考Demo:

  1. //调启百度地图客户端导航
  2. - (IBAction)nativeNavi
  3. {
  4. //初始化调启导航时的参数管理类
  5. NaviPara* para = [[NaviPara alloc]init];
  6. //指定导航类型
  7. para.naviType = NAVI_TYPE_NATIVE;
  8. //初始化终点节点
  9. BMKPlanNode* end = [[[BMKPlanNode alloc]init] autorelease];
  10. //指定终点经纬度
  11. CLLocationCoordinate2D coor2;
  12. coor2.latitude = _nativeEndLatitude.text.floatValue;
  13. coor2.longitude = _nativeEndLongitude.text.floatValue;
  14. end.pt = coor2;
  15. //指定终点名称
  16. end.name = _nativeEndName.text;
  17. //指定终点
  18. para.endPoint = end;
  19. //指定返回自定义scheme,具体定义方法请参考常见问题
  20. para.appScheme = @"baidumapsdk://mapsdk.baidu.com";
  21. //调启百度地图客户端导航
  22. [BMKNavigation openBaiduMapNavigation:para];
  23. [para release];
  24. }
  25. //调启web导航
  26. - (IBAction)webNavi
  27. {
  28. //初始化调启导航时的参数管理类
  29. NaviPara* para = [[NaviPara alloc]init];
  30. //指定导航类型
  31. para.naviType = NAVI_TYPE_WEB;
  32. //初始化起点节点
  33. BMKPlanNode* start = [[[BMKPlanNode alloc]init] autorelease];
  34. //指定起点经纬度
  35. CLLocationCoordinate2D coor1;
  36. coor1.latitude = _webStartLatitude.text.floatValue;
  37. coor1.longitude = _webStartLongitude.text.floatValue;
  38. start.pt = coor1;
  39. //指定起点名称
  40. start.name = _webStartName.text;
  41. //指定起点
  42. para.startPoint = start;
  43. //初始化终点节点
  44. BMKPlanNode* end = [[[BMKPlanNode alloc]init] autorelease];
  45. CLLocationCoordinate2D coor2;
  46. coor2.latitude = _webEndLatitude.text.floatValue;
  47. coor2.longitude = _webEndLongitude.text.floatValue;;
  48. end.pt = coor2;
  49. para.endPoint = end;
  50. //指定终点名称
  51. end.name = _webEndName.text;
  52. //指定调启导航的app名称
  53. para.appName = [NSString stringWithFormat:@"%@", @"testAppName"];
  54. //调启web导航
  55. [BMKNavigation openBaiduMapNavigation:para];
  56. [para release];
  57. }

效果如下图:
 

baidumap demo(二)的更多相关文章

  1. 标签栏使用Demo二

    // //  PHTagViewFrame.m //  标签的使用二 // //  Created by 123 on 16/9/6. //  Copyright © 2016年 彭洪. All ri ...

  2. baidumap demo(三)

    定位 您可以通过以下代码来开启定位功能: 源码复制打印关于 //开启定位功能 [_mapView setShowsUserLocation:YES]; 定位成功后,可以通过mapView.userLo ...

  3. Tornado 网站demo 二

    连接数据库 methods 中建立一个文件 db.py 分别建立起连接对象和游标对象 #!/usr/bin/env Python # coding=utf-8 import pymysql conn ...

  4. baidumap demo(一)

    覆盖物概述 地图上自定义的标注点和覆盖物我们统称为地图覆盖物.您可以通过定制BMKAnnotation和BMKOverlay来添加对应的标注点和覆盖物.地图覆盖物的设计遵循数据与View分离的原则,B ...

  5. ios 团购信息客户端demo(二)

    接上一篇,这篇我们对我们的客户端加入KissXML,MBProgressHUD,AQridView这几个库,首先我们先加入KissXML,这是XML解析库,支持Xpath,可以方便添加更改任何节点.先 ...

  6. 使用Flexible适配移动端html页面 - demo记录

    前段时间看了大神的博客文章[使用Flexible实现手淘H5页面的终端适配](地址:http://www.w3cplus.com/mobile/lib-flexible-for-html5-layou ...

  7. TensorFlow 在android上的Demo(1)

    转载时请注明出处: 修雨轩陈 系统环境说明: ------------------------------------ 操作系统 : ubunt 14.03 _ x86_64 操作系统 内存: 8GB ...

  8. 第7篇 ORACLE EBS DEMO虚拟机环境的安装

    ERP信息系统的实施不仅要求懂得道理方面的知识,更要侧重于应用实践.为了有一个稳定的测试环境.初学者可以自己搭建一个EBS DEMO环境.本节介绍EBS DEMO环境虚拟机的安装.一. 安装前的准备( ...

  9. echarts标准饼图(一)——基本配置demo

    echarts标准饼图解读共分为四部分, 一.基本配置demo 二.标题(title)配置 三.提示框(tooltip)配置 四.图例(legend)配置 五.系列列表(series )配置 下面是一 ...

随机推荐

  1. Unity中HideInInspector和SerializeField

    http://blog.sina.com.cn/s/blog_697b1b8c0102uxvn.html Unity会自动为Public变量做序列化,序列化的意思是说再次读取Unity时序列化的变量是 ...

  2. [Xcode 实际操作]九、实用进阶-(16)给图片添加水印效果

    目录:[Swift]Xcode实际操作 本文将演示如何截取屏幕画面,并将截取图片,存入系统相册. 在项目文件夹[DemoApp]上点击鼠标右键 ->[New File]创建一个扩展文件-> ...

  3. 【POJ - 3040】Allowance(贪心)

    Allowance 原文是English,这里就放Chinese了 Descriptions: 作为创纪录的牛奶生产的奖励,农场主约翰决定开始给Bessie奶牛一个小的每周津贴.FJ有一套硬币N种(1 ...

  4. 自然语言处理(五)——实现机器翻译Seq2Seq完整经过

    参考书 <TensorFlow:实战Google深度学习框架>(第2版) 我只能说这本书太烂了,看完这本书中关于自然语言处理的内容,代码全部敲了一遍,感觉学的很绝望,代码也运行不了. 具体 ...

  5. Spring事件机制详解

    一.前言 说来惭愧,对应Spring事件机制之前只知道实现 ApplicationListener 接口,就可以基于Spring自带的事件做一些事情(如ContextRefreshedEvent),但 ...

  6. Android Activity生命周期(转)

    转自 http://blog.csdn.net/android_tutor/article/details/5772285

  7. bzoj1492 [NOI2007]货币兑换Cash【cdq分治】

    传送门:http://www.lydsy.com/JudgeOnline/problem.php?id=1492 推荐博客:http://www.cnblogs.com/zig-zag/archive ...

  8. Codeforces Round #390 (Div. 2) B

    Ilya is an experienced player in tic-tac-toe on the 4 × 4 field. He always starts and plays with Xs. ...

  9. Machine Learning Codeforces - 940F(带修莫队) && 洛谷P4074 [WC2013]糖果公园

    以下内容未验证,有错请指正... 设块大小为T,则块数为$\frac{n}{T}$ 将询问分为$(\frac{n}{T})^2$块(按照左端点所在块和右端点所在块分块),同块内按时间从小到大依次处理 ...

  10. 关于JVM的一些东西

    1.在JDK1.6(HotSpot虚拟机)及之前,运行时常量池(属于方法区的一部分)是永久代的,而在JDK1.7之后运行时常量池(里面用于存放编译期生成的各种字面量和符号引用,这部分内容将在类加载后进 ...