美文网首页
MY_iOS百度地图简单应用

MY_iOS百度地图简单应用

作者: _Weak | 来源:发表于2018-01-20 17:09 被阅读7次

导入百度SDK

注:自iOS8起,系统定位功能进行了升级,SDK为了实现最新的适配,自v2.5.0起也做了相应的修改,开发者在使用定位功能之前,需要在info.plist里添加(以下二选一,两个都添加默认使用NSLocationWhenInUseUsageDescription):

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

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

//  
//  ViewController.m  
//  SwalleMap  
//  
//  Created by dev on 16/6/1.  
//  Copyright © 2016年 SWALLE. All rights reserved.  
//  
  
#import "ViewController.h"  
#import "UIView+Extension.h"  
#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>//只引入所需的单个头文件  
  
@interface ViewController ()<BMKMapViewDelegate,BMKLocationServiceDelegate,BMKGeoCodeSearchDelegate>  
{  
    BMKPinAnnotationView *newAnnotation;  
      
    BMKGeoCodeSearch *_geoCodeSearch;  
      
    BMKReverseGeoCodeOption *_reverseGeoCodeOption;  
      
      
}  
@property (nonatomic, strong) BMKLocationService *localService;  
@property (weak, nonatomic) UIButton *mapPin;  
@end  
  
@implementation ViewController  
-(BMKLocationService *)localService{  
    if (!_localService) {  
        _localService = [[BMKLocationService alloc] init];  
        [_localService setDesiredAccuracy:kCLLocationAccuracyBest];//设置定位精度  
    }  
    return _localService;  
}  
- (void)viewDidLoad {  
    [super viewDidLoad];  
     
    self.mapView = [[BMKMapView alloc] initWithFrame:self.view.frame];  
    self.mapPin = [UIButton buttonWithType:UIButtonTypeSystem];//大头针  
    self.mapPin.width = 40;  
    self.mapPin.height = 80;  
    self.mapPin.center = self.mapView.center;  
    [self.mapPin setBackgroundImage:[UIImage imageNamed:@"serach_Map"] forState:UIControlStateNormal];  
    self.mapPin.backgroundColor = [UIColor greenColor];  
    [self.mapView addSubview:self.mapPin];  
    [self.view addSubview:self.mapView];  
    self.mapView.zoomLevel=17;//比例尺  
    [self.mapView setMapType:BMKMapTypeStandard];//地图类型  
    self.mapView.delegate = self;  
    self.mapView.userTrackingMode = BMKUserTrackingModeFollow;//设置定位的状态  
    self.mapView.showsUserLocation = YES;//显示定位图层  
    self.localService.delegate = self;  
    [self.localService startUserLocationService];//用户开始定位  
      
    //self.mapView.showsUserLocation = NO;//先关闭显示的定位图层  
    self.mapView.userTrackingMode = BMKUserTrackingModeFollow;//设置定位的状态  
    self.mapView.showsUserLocation = YES;//显示定位图层  
    [self.mapView bringSubviewToFront:self.mapPin];  
  
  
}  
#pragma mark -- BMKLocationServiceDelegate  
- (void)didUpdateBMKUserLocation:(BMKUserLocation *)userLocation  
{  
    self.mapView.showsUserLocation = YES;//显示定位图层  
    //设置地图中心为用户经纬度  
    [self.mapView updateLocationData:userLocation];  
      
      
    //    _mapView.centerCoordinate = userLocation.location.coordinate;  
    BMKCoordinateRegion region ;//表示范围的结构体  
    region.center = self.mapView.centerCoordinate;//中心点  
    region.span.latitudeDelta = 0.004;//经度范围(设置为0.1表示显示范围为0.2的纬度范围)  
    region.span.longitudeDelta = 0.004;//纬度范围  
    [self.mapView setRegion:region animated:YES];  
      
}  
#pragma mark -- BMKMapViewDelegate  
- (void)mapView:(BMKMapView *)mapView regionDidChangeAnimated:(BOOL)animated  
{  
    //屏幕坐标转地图经纬度  
    CLLocationCoordinate2D MapCoordinate=[_mapView convertPoint:_mapPin.center toCoordinateFromView:_mapView];  
    NSLog(@"latitude == %f longitude == %f",MapCoordinate.latitude,MapCoordinate.longitude);  
    if (_geoCodeSearch==nil) {  
        //初始化地理编码类  
        _geoCodeSearch = [[BMKGeoCodeSearch alloc]init];  
        _geoCodeSearch.delegate = self;  
          
    }  
    if (_reverseGeoCodeOption==nil) {  
          
        //初始化反地理编码类  
        _reverseGeoCodeOption= [[BMKReverseGeoCodeOption alloc] init];  
    }  
      
    //需要逆地理编码的坐标位置  
    _reverseGeoCodeOption.reverseGeoPoint =MapCoordinate;  
    [_geoCodeSearch reverseGeoCode:_reverseGeoCodeOption];  
      
    //创建地理编码对象  
    CLGeocoder *geocoder=[[CLGeocoder alloc]init];  
    //创建位置  
    CLLocation *location=[[CLLocation alloc]initWithLatitude:MapCoordinate.latitude longitude:MapCoordinate.longitude];  
      
    //反地理编码  
    [geocoder reverseGeocodeLocation:location completionHandler:^(NSArray<CLPlacemark *> * _Nullable placemarks, NSError * _Nullable error) {  
        //判断是否有错误或者placemarks是否为空  
        if (error !=nil || placemarks.count==0) {  
            NSLog(@"%@",error);  
            return ;  
        }  
        for (CLPlacemark *placemark in placemarks) {  
            //赋值详细地址  
            NSLog(@"%@",placemark.name);  
        }  
    }];  
}  
#pragma mark -- BMKGeoCodeSearchDelegate  
//周边信息  
- (void)onGetReverseGeoCodeResult:(BMKGeoCodeSearch *)searcher result:(BMKReverseGeoCodeResult *)result errorCode:(BMKSearchErrorCode)error{  
    for (BMKPoiInfo *poi in result.poiList) {  
        NSLog(@"%@",poi.name);//周边建筑名  
        NSLog(@"%d",poi.epoitype);  
          
    }  
}  
@end  

相关文章

  • MY_iOS百度地图简单应用

    导入百度SDK 注:自iOS8起,系统定位功能进行了升级,SDK为了实现最新的适配,自v2.5.0起也做了相应的修...

  • 0825_基于lbs的服务应用开发

    新内容(基于lbs的服务应用开发) lbs公开接口: 百度地图 腾讯地图 Google地图 百度地图接口简单使用 ...

  • 百度地图调用api

    1.注册百度地图用户 2.百度地图中创建应用,获取ak值 3.调用 (1)调用百度地图api 在应用中填写自己获取...

  • 39.iOS百度地图(手把手教)

    一.进入百度地图官方(注册应用) 1.1.百度地图官方 1.2.创建应用FBABCE88-01DC-4183-A8...

  • 地图

    地图分类 百度 腾讯 谷歌 苹果本身的地图 百度地图 申请密钥 在百度开发者中心添加应用 在终端里输入pod se...

  • 在 HTTPS 项目中使用百度地图 API

    百度地图 API 产品简介 百度地图 JavaScript API 是一套由 JavaScript 语言编写的应用...

  • 百度地图api的简单应用

    备忘。打开后网页后,在视图中点标示指定地点(如渡江战役纪念馆)。效果图 test.html

  • 百度地图集成_集成SDK和基本功能实现

    1.百度地图导入项目中。。。。 1.注册百度地图,成为其开发者 注册百度地图开发者 2.创建应用:申请获得密匙 创...

  • iOS 跳转 百度地图 高德地图 自带地图

    在做地图跳转操作之前请先在plist文件添加相应的配置参数 App跳转百度地图应用 百度地图文档路线规划 2.2....

  • 百度地图API之麻点图

    关于百度地图批量上传POI数据并在浏览器显示 step1:百度地图开发者身份,创建应用(应用类别是服务端,不是浏览...

网友评论

      本文标题:MY_iOS百度地图简单应用

      本文链接:https://www.haomeiwen.com/subject/ppmtaxtx.html