百度地图api的实现

发布时间:2025-12-09 16:27:31 浏览次数:8

iOS平台/开发指南

< iOS平台

目录

[隐藏]
  • 1 简介
    • 1.1 什么是百度地图API?
    • 1.2 获取API Key
    • 1.3 兼容性
  • 2 在您的程序中显示地图
    • 2.1 引入百度MapAPI的头文件
    • 2.2 引入静态库文件
    • 2.3 引入CoreLocation.framework和QuartzCore.framework
    • 2.4 引入mapapi.bundle资源文件
    • 2.5 初始化BMKMapManager
    • 2.6 创建BMKMapView
  • 3 注意事项
  • 4 卫星图图层
  • 5 实时路况图层
  • 6 地图覆盖物
    • 6.1 添加标注
    • 6.2 删除标注
    • 6.3 添加折线
    • 6.4 添加多边形
    • 6.5 添加圆
    • 6.6 删除Overlay
  • 7 服务类
    • 7.1 POI检索
    • 7.2 公交方案检索
    • 7.3 驾车路线检索
    • 7.4 步行路线检索
    • 7.5 地理编码
    • 7.6 反地理编码
    • 7.7 公交详情检索
  • 8 定位
  • 9 离线地图

简介

什么是百度地图API?

百度地图移动版API(IOS)是一套基于iOS3.0及以上设备的应用程序接口,通过该接口,您可以轻松访问百度服务和数据,构建功能丰富、交互性强的地图应用程序。百度地图移动版API不仅包含构建地图的基本接口,还提供了诸如地图定位、本地搜索、路线规划等数据服务,你可以根据自己的需要进行选择,目前支持Iphone3.0以上的版本,对iPad暂不支持。

面向的读者

API是提供给那些具有一定iOS编程经验和了解面向对象概念的读者使用。此外,读者还应该对地图产品有一定的了解。

您在使用中遇到任何问题,都可以通过API贴吧或交流群反馈给我们。

获取API Key

用户在使用API之前需要获取百度地图移动版API Key,APIKey可跨平台使用,如果您已经有Android平台的授权Key,可直接在iOS平台使用。该Key与你的百度账户相关联,您必须先有百度帐户,才能获得API KEY。并且,该KEY与您引用API的程序名称有关,具体流程请参照获取密钥。

兼容性

支持iOS3.0及以上系统,百度地图API接口与iOS内置的MapKit包兼容,开发者只需很小的改动即可完成从MapKit到百度地图API的迁移。并且迁移到百度地图API之后很多MapKit中只有iOS4.0以上版本才能使用的特性接口也可以正常使用了。

在您的程序中显示地图

完整的Demo例程可参考相关下载。

引入百度MapAPI的头文件

首先将百度MapAPI提供的头文件和静态库(.a)文件拷贝到您的工程目录下,在XCode中添加新的文件Group,引入百度MapAPI提供的头文件(请使用xcode 4.X以上平台)。

在您需要使用百度MapAPId的文件中添加以下代码

  • #import "BMapKit.h"
  • 引入静态库文件

    百度MapAPI提供了模拟器和真机两中环境所使用的静态库文件,分别存放在libs/Release-iphonesimulator和libs/Release-iphoneos文件夹下。有两种方式可以引入静态库文件:

    第一种方式:直接将对应平台的.a文件拖拽至XCode工程左侧的Groups&Files中,缺点是每次在真机和模拟器编译时都需要重新添加.a文件;

    第二种方式:使用lipo命令将设备和模拟器的.a合并成一个通用的.a文件,将合并后的通用.a文件拖拽至工程中即可,具体命令如下:
    lipo –create Release-iphoneos/libbaidumapapi.a Release-iphonesimulator/libbaidumapapi.a –output libbaidumapapi.a

    第三种方式:

    1.将API的libs文件夹拷贝到您的Application工程跟目录下

    2.在XCode的Project -> Edit Active Target -> Build -> Linking -> Other Linker Flags中添加-lbaidumapapi

    3.设置静态库的链接路径,在XCode的Project -> Edit Active Target -> Build -> Search Path -> Library Search Paths中添加您的静态库目录,比如"$(SRCROOT)/../libs/Release$(EFFECTIVE_PLATFORM_NAME)",$(SRCROOT)宏代表您的工程文件目录,$(EFFECTIVE_PLATFORM_NAME)宏代表当前配置是OS还是simulator

    注:静态库中采用ObjectC++实现,因此需要您保证您工程中至少有一个.mm后缀的源文件(您可以将任意一个.m后缀的文件改名为.mm),或者在工程属性中指定编译方式,即将XCode的Project -> Edit Active Target -> Build -> GCC4.2 - Language -> Compile Sources As设置为"Objective-C++"

    引入CoreLocation.framework和QuartzCore.framework

    百度MapAPI中提供了定位功能和动画效果,因此您需要在您的XCode工程中引入CoreLocation.framework和QuartzCore.framework。 添加方式:右键点击Xcode工程左侧的Frameworks文件夹,add->Existing Frameworks,在弹出窗口中选中这两个framework,点击add即可。

    引入mapapi.bundle资源文件

    该步骤为可选,mapapi.bundle中存储了定位、默认大头针标注View及路线关键点的资源图片。如果您不需要使用内置的图片显示功能,则可以不添加此bundle文件。您也可以根据具体需求任意替换或删除该bundle中的图片文件。
    添加方式:将mapapi.bundle拷贝到您的工程目录,直接将该bundle文件托拽至XCode工程左侧的Groups&Files中即可。

    初始化BMKMapManager

    在您的AppDelegate.h文件中添加BMKMapManager的定义

  • @interface BaiduMapApiDemoAppDelegate : NSObject <UIApplicationDelegate> {
  • UIWindow *window;
  • UINavigationController *navigationController;
  • BMKMapManager* _mapManager;
  • }
  • 在您的AppDelegate.m文件中添加对BMKMapManager的初始化,并填入您申请的授权Key,示例如下

  • - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  • // 要使用百度地图,请先启动BaiduMapManager
  • _mapManager = [[BMKMapManager alloc]init];
  • // 如果要关注网络及授权验证事件,请设定generalDelegate参数
  • BOOL ret = [_mapManager start:@"在此处输入您的授权Key" generalDelegate:nil];
  • if (!ret) {
  • NSLog(@"manager start failed!");
  • }
  • // Add the navigation controller's view to the window and display.
  • [self.window addSubview:navigationController.view];
  • [self.window makeKeyAndVisible];
  • return YES;
  • }
  • 创建BMKMapView

    在您的ViewController.m文件中添加BMKMapView的创建代码,示例如下

  • - (void)viewDidLoad {
  • [super viewDidLoad];
  • BMKMapView* mapView = [[BMKMapView alloc]initWithFrame:CGRectMake(0, 0, 320, 480)];
  • self.view = mapView;
  • }
  • 编译,运行,效果如下图所示:  
    默认地图已经可以支持多点触摸,双击放大,多点单击缩小等操作,并都附带动画效果。

    注意事项

    1.静态库中采用ObjectC++实现,因此需要您保证您工程中至少有一个.mm后缀的源文件(您可以将任意一个.m后缀的文件改名为.mm),或者在工程属性中指定编译方式,即将XCode的Project -> Edit Active Target -> Build -> GCC4.2 - Language -> Compile Sources As设置为"Objective-C++"

    2.如果您只在Xib文件中使用了BMKMapView,没有在代码中使用BMKMapView,编译器在链接时不会链接对应符合,需要在工程属性中显式设定:在XCode的Project -> Edit Active Target -> Build -> Linking -> Other Linker Flags中添加-all_load

    3.授权Key的申请:授权Key可跨平台使用,如果您已经申请过Android的key,可直接在iOS中使用;如果还没有授权Key,请到http://dev.baidu.com/wiki/static/imap/key/ 页面申请

    卫星图图层

  • [mapView setMapType:BMKMapTypeSatellite];
  • 运行后效果如下:

    实时路况图层

    目前支持以下11个城市的实时路况信息:北京,上海,广州,深圳,南京,南昌,成都,重庆,武汉,大连,常州。在地图中通过以下代码设置显示实时路况图层:

    打开实时路况图层:

  • [mapView setMapType:BMKMapTypeTrafficOn];
  • 关闭实时路况图层:

  • [mapView setMapType:BMKMapTypeTrafficOff];
  • 运行后效果如下:

    地图覆盖物

    覆盖物概述

    地图上自定义的标注点和覆盖物我们统称为地图覆盖物。您可以通过定制BMKAnnotation和BMKOverlay来添加对应的标注点和覆盖物。地图覆盖物的设计遵循数据与View分离的原则,BMKAnnotation和BMKOverlay系列的类主要用来存放覆盖物相关的数据,BMKAnnotaionView和BMKOverlayView系列类为覆盖物对应的View。

    添加标注

    BMKAnnotation为标注对应的protocal,您可以自定义标注类实现该protocal。百度地图API也预置了基本的标注点:BMKPointAnnotation,和一个大头针标注View:BMKPinAnnotationView,您可以直接使用来显示标注。示例如下: 
    修改您的ViewController.h文件,添加以下代码,使您的ViewController实现BMKMapViewDelegate协议:

  • #import <UIKit/UIKit.h>
  • #import "BMapKit.h"
  • @interface AnnotationDemoViewController : UIViewController <BMKMapViewDelegate>{
  • IBOutlet BMKMapView* mapView;
  • }
  • @end
  • 修改您的ViewController.m文件,实现BMKMapViewDelegate的mapView:viewForAnnotation:函数,并在viewDidLoad添加标注数据对象

  • // Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
  • - (void)viewDidLoad {
  • [super viewDidLoad];
  • // 设置mapView的Delegate
  • mapView.delegate = self;
  • // 添加一个PointAnnotation
  • BMKPointAnnotation* annotation = [[BMKPointAnnotation alloc]init];
  • CLLocationCoordinate2D coor;
  • coor.latitude = 39.915;
  • coor.longitude = 116.404;
  • annotation.coordinate = coor;
  • annotation.title = @"这里是北京";
  • [mapView addAnnotation:annotation];
  • }
  • // Override
  • - (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;
  • }
  • 运行后,会在地图显示对应的标注点,点击会弹出气泡,效果如图:

    删除标注

    通过removeAnnotation:函数实现对已添加标注的删除功能,示例如下:

  • if (annotation != nil) {
  • [mapView removeAnnotation:annotation];
  • }
  • 添加折线

    修改您的ViewController.h文件,添加以下代码,使您的ViewController实现BMKMapViewDelegate协议:

  • #import <UIKit/UIKit.h>
  • #import "BMapKit.h"
  • @interface OverlayDemoViewController : UIViewController <BMKMapViewDelegate>{
  • IBOutlet BMKMapView* mapView;
  • }
  • @end
  • 修改您的ViewController.m文件,实现BMKMapViewDelegate的mapView:viewForOverlay:函数,并在viewDidLoad添加折线数据对象:

  • - (void)viewDidLoad {
  • [super viewDidLoad];
  • // 设置delegate
  • mapView.delegate = self;
  • // 添加折线覆盖物
  • CLLocationCoordinate2D coors[2] = {0};
  • coors[0].latitude = 39.315;
  • coors[0].longitude = 116.304;
  • coors[1].latitude = 39.515;
  • coors[1].longitude = 116.504;
  • BMKPolyline* polyline = [BMKPolyline polylineWithCoordinates:coors count:2];
  • [mapView addOverlay:polyline];
  • }
  • // Override
  • - (BMKOverlayView *)mapView:(BMKMapView *)mapView viewForOverlay:(id <BMKOverlay>)overlay{
  • if ([overlay isKindOfClass:[BMKPolyline class]]){
  • BMKPolylineView* polylineView = [[[BMKPolylineView alloc] initWithOverlay:overlay] autorelease];
  • polylineView.strokeColor = [[UIColor purpleColor] colorWithAlphaComponent:1];
  • polylineView.lineWidth = 5.0;
  • return polylineView;
  • }
  • return nil;
  • }
  • 运行后,效果如图:

    添加多边形

    修改您的ViewController.h文件,添加以下代码,使您的ViewController实现BMKMapViewDelegate协议: 
    修改您的ViewController.m文件,实现BMKMapViewDelegate的mapView:viewForOverlay:函数,并在viewDidLoad添加多边形数据对象:

  • - (void)viewDidLoad {
  • [super viewDidLoad];
  • // 设置delegate
  • mapView.delegate = self;
  • // 添加多边形覆盖物
  • CLLocationCoordinate2D coords[3] = {0};
  • coords[0].latitude = 39;
  • coords[0].longitude = 116;
  • coords[1].latitude = 38;
  • coords[1].longitude = 115;
  • coords[2].latitude = 38;
  • coords[2].longitude = 117;
  • BMKPolygon* polygon = [BMKPolygon polygonWithCoordinates:coords count:3];
  • [mapView addOverlay:polygon];
  • }
  • // Override
  • - (BMKOverlayView *)mapView:(BMKMapView *)mapView viewForOverlay:(id <BMKOverlay>)overlay{
  • if ([overlay isKindOfClass:[BMKPolygon class]]){
  • BMKPolygonView* polygonView = [[[BMKPolygonView alloc] initWithOverlay:overlay] autorelease];
  • polygonView.strokeColor = [[UIColor purpleColor] colorWithAlphaComponent:1];
  • polygonView.fillColor = [[UIColor cyanColor] colorWithAlphaComponent:0.2];
  • polygonView.lineWidth = 5.0;
  • return polygonView;
  • }
  • return nil;
  • }
  • 运行后,效果如图:

    添加圆

    修改您的ViewController.h文件,添加以下代码,使您的ViewController实现BMKMapViewDelegate协议: 
    修改您的ViewController.m文件,实现BMKMapViewDelegate的mapView:viewForOverlay:函数,并在viewDidLoad添加园数据对象:

  • - (void)viewDidLoad {
  • [super viewDidLoad];
  • // 设置delegate
  • mapView.delegate = self;
  • // 添加圆形覆盖物
  • CLLocationCoordinate2D coor;
  • coor.latitude = 39.915;
  • coor.longitude = 116.404;
  • BMKCircle* circle = [BMKCircle circleWithCenterCoordinate:coor radius:5000];
  • [mapView addOverlay:circle];
  • }
  • // Override
  • - (BMKOverlayView *)mapView:(BMKMapView *)mapView viewForOverlay:(id <BMKOverlay>)overlay{
  • if ([overlay isKindOfClass:[BMKCircle class]]){
  • BMKCircleView* circleView = [[[BMKCircleView alloc] initWithOverlay:overlay] autorelease];
  • circleView.fillColor = [[UIColor cyanColor] colorWithAlphaComponent:0.5];
  • circleView.strokeColor = [[UIColor blueColor] colorWithAlphaComponent:0.5];
  • circleView.lineWidth = 10.0;
  • return circleView;
  • }
  • return nil;
  • }
  • 运行后,效果如图:

    删除Overlay

    通过removeOverlay:函数实现对已添加标注的删除功能,示例如下:

  • if (overlay != nil) {
  • [mapView removeOverlay:overlay];
  • }
  • 服务类

    百度地图API提供的搜索服务包括:POI检索,多关键字检索,公交方案检索,驾车路线检索,步行路线检索,地理编码,反地理编码。 
    所有检索请求接口均为异步接口,您必须实现BMKSearchDelegate协议,在检索到结果后,API会回调BMKSearchDelegate对应的接口,通知调用者检索结果数据。 
    BMKSearchDelegate对应的接口如下:

  • /**
  •  *返回POI搜索结果
  •  *@param poiResultList 搜索结果列表,成员类型为BMKPoiResult
  •  *@param type 返回结果类型: BMKTypePoiList,BMKTypeAreaPoiList,BMKAreaMultiPoiList
  •  *@param error 错误号,@see BMKErrorCode
  •  */
  • - (void)onGetPoiResult:(NSArray*)poiResultList searchType:(int)type errorCode:(int)error{
  • }
  • /**
  •  *返回公交搜索结果
  •  *@param result 搜索结果
  •  *@param error 错误号,@see BMKErrorCode
  •  */
  • - (void)onGetTransitRouteResult:(BMKPlanResult*)result errorCode:(int)error{
  • }
  • /**
  •  *返回驾乘搜索结果
  •  *@param result 搜索结果
  •  *@param error 错误号,@see BMKErrorCode
  •  */
  • - (void)onGetDrivingRouteResult:(BMKPlanResult*)result errorCode:(int)error{
  • }
  • /**
  •  *返回步行搜索结果
  •  *@param result 搜索结果
  •  *@param error 错误号,@see BMKErrorCode
  •  */
  • - (void)onGetWalkingRouteResult:(BMKPlanResult*)result errorCode:(int)error{
  • }
  • /**
  •  *返回地址信息搜索结果
  •  *@param result 搜索结果
  •  *@param error 错误号,@see BMKErrorCode
  •  */
  • - (void)onGetAddrResult:(BMKAddrInfo*)result errorCode:(int)error{
  • }
  • /**
  •  *返回公交详情搜索结果
  •  *@param result 搜索结果
  •  *@param error 错误号,@see BMKErrorCode
  •  */
  • - (void)onGetBusDetailResult:(BMKBusLineResult*)busLineResult errorCode:(int)error{
  • }
  • POI检索

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

  • @interface PoiSearchDemoViewController : UIViewController<BMKMapViewDelegate, BMKSearchDelegate> {
  • IBOutlet BMKMapView* _mapView;
  • BMKSearch* _search;
  • }
  • 在ViewController.m的viewDidLoad中创建BMKSearch对象,设置对应的delegate,并实现BMKSearchDelegate协议中获取POI结果的方法,代码如下:

  • - (void)viewDidLoad {
  • [super viewDidLoad];
  • _mapView.delegate = self;
  • _search = [[BMKSearch alloc]init];
  • _search.delegate = self;
  • //发起POI检索
  • [_search poiSearchInCity:@"北京" withKey:@"西单" pageIndex:0];
  • }
  • - (void)onGetPoiResult:(NSArray*)poiResultList searchType:(int)type errorCode:(int)error
  • {
  • if (error == BMKErrorOk) {
  • BMKPoiResult* result = [poiResultList objectAtIndex:0];
  • for (int i = 0; i < result.poiInfoList.count; i++) {
  • BMKPoiInfo* poi = [result.poiInfoList objectAtIndex:i];
  • BMKPointAnnotation* item = [[BMKPointAnnotation alloc]init];
  • item.coordinate = poi.pt;
  • item.title = poi.name;
  • [_mapView addAnnotation:item];
  • [item release];
  • }
  • }
  • }
  • 运行效果如图: 
    示例代码请参考相关下载demo工程中的PoiSearchDemoViewController.mm文件

    公交方案检索

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

  • - (void)viewDidLoad {
  • [super viewDidLoad];
  • _mapView.delegate = self;
  • _search = [[BMKSearch alloc]init];
  • _search.delegate = self;
  • //发起公交检索
  • BMKPlanNode* start = [[BMKPlanNode alloc]init];
  • start.name = @"天安门";
  • BMKPlanNode* end = [[BMKPlanNode alloc]init];
  • end.name = @"百度大厦";
  • [_search transitSearch:@"北京" startNode:start endNode:end];
  • [start release];
  • [end release];
  • }
  • - (void)onGetTransitRouteResult:(BMKPlanResult*)result errorCode:(int)error
  • {
  • // 在此处添加您对公交方案结果的处理
  • }
  • 将公交方案对应的路线和关键点绘制在地图上,效果如下图:
     
    示例代码请参考相关下载demo工程中的RouteSearchDemoViewController.mm文件

    驾车路线检索

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

  • - (void)viewDidLoad {
  • [super viewDidLoad];
  • _mapView.delegate = self;
  • _search = [[BMKSearch alloc]init];
  • _search.delegate = self;
  • //发起公交检索
  • BMKPlanNode* start = [[BMKPlanNode alloc]init];
  • start.name = @"天安门";
  • BMKPlanNode* end = [[BMKPlanNode alloc]init];
  • end.name = @"百度大厦";
  • [_search drivingSearch:@"北京" startNode:start endCity:@"北京" endNode:end];
  • [start release];
  • [end release];
  • }
  • - (void)onGetDrivingRouteResult:(BMKPlanResult*)result errorCode:(int)error
  • {
  • // 在此处添加您对驾车方案结果的处理
  • }
  • 将驾车方案对应的路线和关键点绘制在地图上,效果如下图:
     
    示例代码请参考相关下载demo工程中的RouteSearchDemoViewController.mm文件

    步行路线检索

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

  • - (void)viewDidLoad {
  • [super viewDidLoad];
  • _mapView.delegate = self;
  • _search = [[BMKSearch alloc]init];
  • _search.delegate = self;
  • //发起步行检索
  • BMKPlanNode* start = [[BMKPlanNode alloc]init];
  • start.name = @"天安门";
  • BMKPlanNode* end = [[BMKPlanNode alloc]init];
  • end.name = @"百度大厦";
  • [_search walkingSearch:@"北京" startNode:start endCity:@"北京" endNode:end];
  • [start release];
  • [end release];
  • }
  • - (void)onGetWalkingRouteResult:(BMKPlanResult*)result errorCode:(int)error
  • {
  • // 在此处添加您对步行方案结果的处理
  • }
  • 将步行方案对应的路线和关键点绘制在地图上,效果如下图:
     
    示例代码请参考相关下载demo工程中的RouteSearchDemoViewController.mm文件

    地理编码

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

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

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

    反地理编码

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

  • - (void)viewDidLoad {
  • [super viewDidLoad];
  • _mapView.delegate = self;
  • _search = [[BMKSearch alloc]init];
  • _search.delegate = self;
  • //发起反地理编码
  • CLLocationCoordinate2D pt = (CLLocationCoordinate2D){39.915101, 116.403981};
  • [_search reverseGeocode:pt];
  • }
  • - (void)onGetAddrResult:(BMKAddrInfo*)result errorCode:(int)error
  • {
  • // 在此处添加您对反地理编码结果的处理
  • }

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

    公交详情检索

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

  • - (void)viewDidLoad {
  • [super viewDidLoad];
  • _mapView.delegate = self;
  • _search = [[BMKSearch alloc]init];
  • _search.delegate = self;
  • //发起poi检索
  • [_search poiSearchInCity:@"北京" withKey:@"717" pageIndex:0];
  • }
  • - (void)onGetPoiResult:(NSArray*)poiResultList searchType:(int)type errorCode:(int)error
  • {
  • if (error == BMKErrorOk) {
  • BMKPoiResult* result = [poiResultList objectAtIndex:0];
  • for (int i = 0; i < result.poiInfoList.count; i++) {
  • BMKPoiInfo* poi = [result.poiInfoList objectAtIndex:i];
  • if(poi.epoitype == 2)
  • {
  • break;
  • }
  • }
  • // 发起公交详情搜索
  • if(poi != nil && poi.epoitype == 2 )
  • {
  • NSLog(poi.uid);
  • BOOL flag = [_search busLineSearch:@"北京" withKey:poi.uid];
  • if (!flag) {
  • NSLog(@"search failed!");
  • }
  • }
  • }
  • }
  • - (void)onGetBusDetailResult:(BMKBusLineResult *)busLineResult errorCode:(int)error
  • {
  • // 在此处添加您对公交详情结果的处理
  • }
  • 将公交详情对应的路线和关键点绘制在地图上,效果如下图:
     
    示例代码请参考相关下载demo工程中的BusLineSearchViewController.mm文件

    定位

    您可以通过以下代码来开启定位功能:

  • [mapView setShowsUserLocation:YES];
  • 定位成功后,可以通过mapView.userLocation来获取位置数据。 
    完整的示例代码请参考相关下载demo工程中的LocationDemoViewController.mm文件

    离线地图

    SDK v1.1以后支持离线地图导入,从官网下载对应的离线包,通过itunes导入对应程序的共享目录,对于越狱的手机可以通过91助手拷到对应程序目录下的document目录:

  • _offlineMap = [[BMKOfflineMap alloc]init];
  • _offlineMap.delegate = self;

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

    需要做网站?需要网络推广?欢迎咨询客户经理 13272073477