在這裏就不在介紹百度的具體配置,配置詳見http://developer.baidu.com/map/index.php?title=iossdkphp
1.首先接受基本的地圖功能ios
新建一個地圖類,xib拖也行,我這邊是代碼實現的。git
_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獨立開來,管理地理移動位置的變化atom
#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]; }