ios百度地圖的使用(普通定位、反地理編碼)_IOS

來源:互聯網
上載者:User

iOS定位 - 普通定位(沒有地圖) - 反地理編碼(得到具體位置),下面通過代碼給大家詳解,代碼如下:

#import <CoreLocation/CoreLocation.h> 使用到的標頭檔 要引入CoreLocation這個包<CLLocationManagerDelegate>    使用的代理名稱//1.使用定位服務 //設定app有訪問定位服務的許可權 //在使用應用期間 / 始終(app在後台) //info.plist檔案添加以下兩條(或者其中一條): //NSLocationWhenInUseUsageDescription 在使用應用期間 //NSLocationAlwaysUsageDescription 始終 //2.LocationManager 對象管理相關的定位服務 _manager = [[CLLocationManager alloc] init]; //manager判斷: 手機是否開啟定位 / app是否有訪問定位的許可權 //[CLLocationManager locationServicesEnabled]; //手機是否開啟定位 //[CLLocationManager authorizationStatus]; //app訪問定位的許可權的狀態 if (![CLLocationManager locationServicesEnabled] || [CLLocationManager authorizationStatus] != kCLAuthorizationStatusAuthorizedWhenInUse) {  [_manager requestWhenInUseAuthorization]; //向使用者請求訪問定位服務的許可權 } _manager.delegate = self; _manager.desiredAccuracy = kCLLocationAccuracyBest; _manager.distanceFilter = 1.0f; [_manager startUpdatingLocation];//定位代理經緯度回調-(void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation { [_manager stopUpdatingLocation]; CLGeocoder * geoCoder = [[CLGeocoder alloc] init]; [geoCoder reverseGeocodeLocation:newLocation completionHandler:^(NSArray *placemarks, NSError *error) {  for (CLPlacemark * placemark in placemarks) {   NSDictionary *test = [placemark addressDictionary];   // Country(國家) State(城市) SubLocality(區) Name全稱   NSLog(@"%@", [test objectForKey:@"Name"]);  } }];}

ios百度地圖的使用(普通定位、反地理編碼)

1.首先接受基本的地圖功能

建立一個地圖類,xib拖也行,我這邊是代碼實現的。

 

_mapView = [[BMKMapView alloc]initWithFrame:CGRectMake(0, 0,self.view.frame.size.width, self.view.frame.size.height)];//添加mapVIew [self.view addSubview:_mapView];#pragma mark - 設定mapView屬性-(void)setMapViewProperty{ _mapView.mapType = BMKUserTrackingModeFollowWithHeading; _mapView.showsUserLocation = YES; //是否顯示定位元影像層(即我的位置的小圓點) _mapView.zoomLevel = 16;//地圖顯示比例 _mapView.rotateEnabled = NO; //設定是否可以旋轉   [self passLocationValue];}#pragma mark -傳入定位座標 //設定定位到得使用者的位置,這裡是簡單的應用方法(必須開啟程式時已經擷取到地理位置座標,為瞭解決地圖定位時總是先顯示天安門)-(void)passLocationValue{ BMKCoordinateRegion viewRegion = BMKCoordinateRegionMake([UserLocationManager sharedInstance].clloction.coordinate, BMKCoordinateSpanMake(0.02f,0.02f)); BMKCoordinateRegion adjustedRegion = [_mapView regionThatFits:viewRegion]; [_mapView setRegion:adjustedRegion animated:YES];  }#pragma mark -設定定位圓點屬性-(void)setUserImage{ //使用者位置類 BMKLocationViewDisplayParam* param = [[BMKLocationViewDisplayParam alloc] init]; param.locationViewOffsetY = 0;//位移量 param.locationViewOffsetX = 0; param.isAccuracyCircleShow =NO;//設定是否顯示定位的那個精度圈 param.isRotateAngleValid = NO; [_mapView updateLocationViewWithParam:param];}

這樣基本的地圖介面就出來了

如果你需要在地圖上做一些請求,可以實現BMKMapViewDelegate,以下是mapView的一些協議方法

** *地圖地區即將改變時會調用此介面 *@param mapview 地圖View *@param animated 是否動畫 */- (void)mapView:(BMKMapView *)mapView regionWillChangeAnimated:(BOOL)animated{ //TODO} /** *地圖地區改變完成後會調用此介面 *@param mapview 地圖View *@param animated 是否動畫 */- (void)mapView:(BMKMapView *)mapView regionDidChangeAnimated:(BOOL)animated{ //TODO}/** *地圖狀態改變完成後會調用此介面 *@param mapview 地圖View */- (void)mapStatusDidChanged:(BMKMapView *)mapView{ //TODO}

2.地圖定位

我這邊是將定位封裝了一個獨立的manager類來管理定位和地圖上滑動到的位置,是將定位功能和地圖mapVIew獨立開來,管理地理移動位置的變化

#import <Foundation/Foundation.h>#import "BMapKit.h"@interface UserLocationManager : NSObject <BMKMapViewDelegate,BMKLocationServiceDelegate>{ CLLocation *cllocation; BMKReverseGeoCodeOption *reverseGeoCodeOption;//逆地理編碼}@property (strong,nonatomic) BMKLocationService *locService;//城市名@property (strong,nonatomic) NSString *cityName;//使用者緯度@property (nonatomic,assign) double userLatitude;//使用者經度@property (nonatomic,assign) double userLongitude;//使用者位置@property (strong,nonatomic) CLLocation *clloction;//初始化單例+ (UserLocationManager *)sharedInstance;//初始化百度地圖使用者位置管理類- (void)initBMKUserLocation;//開始定位-(void)startLocation;//停止定位-(void)stopLocation;@end#import "UserLocationManager.h"@implementation UserLocationManager+ (UserLocationManager *)sharedInstance{ static UserLocationManager *_instance = nil; @synchronized (self) {  if (_instance == nil) {   _instance = [[self alloc] init];  } } return _instance;}-(id)init{ if (self == [super init]) {  [self initBMKUserLocation]; } return self;}#pragma 初始化百度地圖使用者位置管理類/** * 初始化百度地圖使用者位置管理類 */- (void)initBMKUserLocation{ _locService = [[BMKLocationService alloc]init]; _locService.delegate = self; [self startLocation];}#pragma 開啟定位服務/** * 開啟定位服務 */-(void)startLocation{ [_locService startUserLocationService];}#pragma 關閉定位服務/** * 關閉定位服務 */-(void)stopLocation{ [_locService stopUserLocationService];}#pragma BMKLocationServiceDelegate/** *使用者位置更新後,會調用此函數 *@param userLocation 新的使用者位置 */- (void)didUpdateUserLocation:(BMKUserLocation *)userLocation{  cllocation = userLocation.location; _clloction = cllocation; _userLatitude = cllocation.coordinate.latitude; _userLongitude = cllocation.coordinate.longitude; [self stopLocation];(如果需要即時定位不用停止定位服務)}/** *在停止定位後,會調用此函數 */- (void)didStopLocatingUser{;}/** *定位失敗後,會調用此函數 *@param error 錯誤號碼 */- (void)didFailToLocateUserWithError:(NSError *)error{ [self stopLocation];}

以上代碼就是本文ios百度地圖的使用(普通定位、反地理編碼),希望對大家今後的工作和學習有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.