使用百度地图需要注意的问题

在使用百度地图的时候,首先按自己的需求下载相关的SDK ,把.framework相关的文件拖入工程中


1,配置开发环境

由于iOS9改用更安全的https,为了能够在iOS9中正常使用地图SDK,请在"Info.plist"中进行如下配置,否则影响SDK的使用。

NSAppTransportSecurity
    
        NSAllowsArbitraryLoads
        
    

2,导入系统库文件

在Xcode的Project -> Active 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,在info.plist 里面添加如下:

 LSApplicationQueriesSchemes
    
        baidumap
    
4,在info.plist 里面添加

NSLocationWhenInUseUsageDescription ,允许在前台使用时获取GPS的描述

NSLocationAlwaysUsageDescription ,允许永久使用GPS的描述

两者都添加时 ,默认为  NSLocationWhenInUseUsageDescription


5,需要在info.plist中添加:Bundle display name ,且其值不能为空

否者会出现 必须要设置 Bundle display name 的提示


6,添加-ObjC

方法:Xcode ->project->build settings -> Other Linker Flags 设置为 -ObjC


7,保证您工程中至少有一个.mm后缀的源文件(您可以将任意一个.m后缀的文件改名为.mm),或者在工程属性中指定编译方式,即将Xcode的Project -> Edit Active Target -> Build -> GCC4.2 - Language -> Compile Sources As设置为"Objective-C++"


8,引入 引入mapapi.bundle资源文件 

方法:选中工程名,在右键菜单中选择Add Files to “...”…,从BaiduMapAPI_Map.framework||Resources文件中选择mapapi.bundle文件,并勾选“Copy items if needed”复选框,单击“Add”按钮,将资源文件添加到工程中。

这个很重要


9 ,在 AppDelegate.m

#import

添加如下

@interface AppDelegate ()
{
     BMKMapManager* _mapManager;
}
@end
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    
    self.window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
    ViewController *vc = [[ViewController alloc]init];
    UINavigationController *nv = [[UINavigationController alloc]initWithRootViewController:vc];
    self.window.rootViewController = nv;
    
    _mapManager = [[BMKMapManager alloc]init];
    // 如果要关注网络及授权验证事件,请设定     generalDelegate参数
    BOOL ret = [_mapManager start:@"你的API KEY (注意:不同的app,需要不同的API KEY,也就是谁一个 API KEY 只能用一次)"  generalDelegate:nil];
    if (!ret) {
        NSLog(@"manager start failed!");
    }
    
    [self.window makeKeyAndVisible];
    return YES;
}


10,在   ViewController.m 中添加   #import
_mapView = [[BMKMapView alloc]initWithFrame:CGRectMake(0, 0, 320, 480)];
    self.view = _mapView;

11,记得添加:

- (void)viewWillAppear:(BOOL)animated
{
    [_mapView viewWillAppear];
    _mapView.delegate = self; // 此处记得不用的时候需要置nil,否则影响内存的释放
}
-(void)viewWillDisappear:(BOOL)animated
{
    [_mapView viewWillDisappear];
    _mapView.delegate = nil; // 不用时,置nil
}


这个就得到如下的结果了


使用百度地图需要注意的问题_第1张图片

你可能感兴趣的:(iOS开发--第三方库)