百度SDK實戰(zhàn)Demo(獲取實時定位狀態(tài))

地圖的功能幾乎每個App都會用到. 特別是有定位功能的app,從開發(fā)到現(xiàn)在,地圖功能基本是我常用到的.我就抽空總結(jié)一下近 3年多的地圖使用經(jīng)驗.

1:關(guān)于第三方SDK無法獲取定位 狀態(tài)改變的問題

? ? ? ? 關(guān)于這個SDK的地圖的坑,我至今都沒有找到直接的解決方法, 而是采用 規(guī)避的方法解決這個問題. 由于我以前公司項目 同時 用到了百度SDK,高德導(dǎo)航(SDK),谷歌SDK.更別說 能拿到定位狀態(tài)改變了. 有時人為的關(guān)掉定位功能.更無法判斷.

我的解決方法是 用 ios 原生的 定位功能. 理由是第三方SDK都是在原生的基礎(chǔ)上封裝好的.地圖的集成我就不多說了.上代碼.

第1步:導(dǎo)入頭文件和 簽協(xié)議

第2步:初始化?

?//!定位管理

@property (nonatomic, strong) CLLocationManager *locationManager;

#pragma mark - ======================

- (CLLocationManager *)locationManager

{

if (!_locationManager)

{

_locationManager = [[CLLocationManager alloc] init];

_locationManager.delegate = self;

// 設(shè)置定位精度

_locationManager.desiredAccuracy = kCLLocationAccuracyBest;

// 定位頻率,每隔多少米定位一次

_locationManager.distanceFilter = kCLDistanceFilterNone;

}

return _locationManager;

}



再視圖加載完成這里 調(diào)用這句話.去用懶加載方式初始化 原生定位 管理器

接下來 當(dāng)你運行時,這個界面出現(xiàn)時,會走 原生的代理協(xié)議方法

在定位成功前會做一個判斷 實時定位狀態(tài)的協(xié)議方法

- (void)locationManager:(CLLocationManager *)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status

{

if(status == kCLAuthorizationStatusAuthorizedWhenInUse){

XYLLog(@"使用");

[self.locationManager startUpdatingLocation];

}else if(status == kCLAuthorizationStatusDenied){

XYLLog(@"不使用");

[self.locationManager requestWhenInUseAuthorization];

}

}


這個是手機(jī)設(shè)備采集到的 GPS做標(biāo),如果項目集成了 百度SDK 建議進(jìn)行地圖糾偏處理

- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error{

XYLLog(@"定位失敗");

}

當(dāng)定位成功后,那到 糾偏后的經(jīng)緯度, 我們要填加 定位點,顯示出來. 原生的定位點 沒有第三方的樣式多.只有自己自定義

我上代碼:?

繼承 BMKAnnotationView ,這是自定義的, m 文件的實現(xiàn)


//? XYLFenceMapAnnotationView.m//? XYLBaiduMap2017////? Created by 夏玉林 on 17/2/16.//? Copyright ? 2017年 夏玉林. All rights reserved.//#import "XYLFenceMapAnnotationView.h"@interface XYLFenceMapAnnotationView()@property (nonatomic, strong) CALayer *colorDotLayer;@property (nonatomic, strong) CALayer *outerDotLayer;@end@implementation XYLFenceMapAnnotationView//!外圈- (CALayer*)outerDotLayer {? ? if(!_outerDotLayer) {? ? ? ? _outerDotLayer = [CALayer layer];? ? ? ? _outerDotLayer.bounds = self.bounds;? ? ? ? _outerDotLayer.contents = (id)[self circleImageWithColor:self.outerColor height:self.bounds.size.height].CGImage;? ? ? ? _outerDotLayer.position = CGPointMake(self.bounds.size.width/2, self.bounds.size.height/2);? ? ? ? _outerDotLayer.contentsGravity = kCAGravityCenter;? ? ? ? _outerDotLayer.contentsScale = [UIScreen mainScreen].scale;? ? ? ? _outerDotLayer.shadowColor = [UIColor blackColor].CGColor;? ? ? ? _outerDotLayer.shadowOffset = CGSizeMake(0, 2);? ? ? ? _outerDotLayer.shadowRadius = 3;? ? ? ? _outerDotLayer.shadowOpacity = 0.3;? ? ? ? _outerDotLayer.shouldRasterize = YES;? ? ? ? _outerDotLayer.rasterizationScale = [UIScreen mainScreen].scale;? ? }? ? return _outerDotLayer;}//!內(nèi)圈- (CALayer*)colorDotLayer{? ? if(!_colorDotLayer)? ? {? ? ? ? _colorDotLayer = [CALayer layer];? ? ? ? CGFloat width = self.bounds.size.width-6;? ? ? ? _colorDotLayer.bounds = CGRectMake(0, 0, width, width);? ? ? ? _colorDotLayer.allowsGroupOpacity = YES;? ? ? ? _colorDotLayer.backgroundColor = self.annotationColor.CGColor;? ? ? ? _colorDotLayer.cornerRadius = width/2;? ? ? ? _colorDotLayer.position = CGPointMake(self.bounds.size.width/2, self.bounds.size.height/2);? ? ? ? ? ? ? ? dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^(void) {? ? ? ? ? ? ? ? ? ? ? ? if(self.delayBetweenPulseCycles != INFINITY) {? ? ? ? ? ? ? ? CAMediaTimingFunction *defaultCurve = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionDefault];? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? CAAnimationGroup *animationGroup = [CAAnimationGroup animation];? ? ? ? ? ? ? ? animationGroup.duration = self.pulseAnimationDuration;? ? ? ? ? ? ? ? animationGroup.repeatCount = INFINITY;? ? ? ? ? ? ? ? animationGroup.removedOnCompletion = NO;? ? ? ? ? ? ? ? animationGroup.autoreverses = YES;? ? ? ? ? ? ? ? animationGroup.timingFunction = defaultCurve;? ? ? ? ? ? ? ? animationGroup.speed = 1;? ? ? ? ? ? ? ? animationGroup.fillMode = kCAFillModeBoth;? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? CABasicAnimation *pulseAnimation = [CABasicAnimation animationWithKeyPath:@"transform.scale.xy"];? ? ? ? ? ? ? ? pulseAnimation.fromValue = @0.8;? ? ? ? ? ? ? ? pulseAnimation.toValue = @1;? ? ? ? ? ? ? ? pulseAnimation.duration = self.pulseAnimationDuration;? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? CABasicAnimation *opacityAnimation = [CABasicAnimation animationWithKeyPath:@"opacity"];? ? ? ? ? ? ? ? opacityAnimation.fromValue = @0.8;? ? ? ? ? ? ? ? opacityAnimation.toValue = @1;? ? ? ? ? ? ? ? opacityAnimation.duration = self.pulseAnimationDuration;? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? animationGroup.animations = @[pulseAnimation, opacityAnimation];? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? dispatch_async(dispatch_get_main_queue(), ^(void) {? ? ? ? ? ? ? ? ? ? [_colorDotLayer addAnimation:animationGroup forKey:@"pulse"];? ? ? ? ? ? ? ? });? ? ? ? ? ? }? ? ? ? });? ? ? ? ? ? }? ? return _colorDotLayer;}#pragma mark - =====================UIView方法====================- (id)initWithAnnotation:(id)annotation reuseIdentifier:(NSString *)reuseIdentifier

{

self = [super initWithAnnotation:annotation reuseIdentifier:reuseIdentifier];

if (self)

{

#pragma mark============在這里修改定位點的 frame===============

self.bounds = CGRectMake(0, 0, 22, 22);

self.pulseAnimationDuration = 0;

self.delayBetweenPulseCycles = 0;

self.annotationColor = [UIColor colorWithRed:0.000 green:0.478 blue:1.000 alpha:1];

self.outerColor = [UIColor whiteColor];

}

return self;

}

- (void)willMoveToSuperview:(UIView *)newSuperview

{

if (newSuperview)

[self reloadLayers];

}

- (void)reloadLayers

{

[_outerDotLayer removeFromSuperlayer];

_outerDotLayer = nil;

[self.layer addSublayer:self.outerDotLayer];

[_colorDotLayer removeFromSuperlayer];

_colorDotLayer = nil;

[self.layer addSublayer:self.colorDotLayer];

}

- (UIImage*)circleImageWithColor:(UIColor*)color height:(float)height {

UIGraphicsBeginImageContextWithOptions(CGSizeMake(height, height), NO, 0);

CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();

UIBezierPath* fillPath = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(0, 0, height, height)];

[color setFill];

[fillPath fill];

UIImage *dotImage = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

CGColorSpaceRelease(colorSpace);

return dotImage;

}


里面還有 高級動畫的實現(xiàn)

另外 自定義的 大頭針?


注意繼承 BMKAnnotation

//? XYLPinView.h//? XYLBaiDuMap////? Created by 夏玉林 on 16/12/17.//? Copyright ? 2016年 夏玉林. All rights reserved.//#import// 引入地圖功能所有的頭文件#import//該類為標(biāo)注點的protocol摇天,提供了標(biāo)注類的基本信息函數(shù)@interface XYLPinView : NSObject/*

*? 傳入經(jīng)緯度結(jié)合體

*/

- (instancetype)initWithCoordinate:(CLLocationCoordinate2D )coordinate;

@property (nonatomic,assign) CLLocationCoordinate2D coordinate;

//標(biāo)題

@property (nonatomic,copy)NSString *title;

//副標(biāo)題

@property (nonatomic,copy)NSString *subtitle;

@end



m 文件

//

//? XYLPinView.m

//? XYLBaiDuMap

//

//? Created by 夏玉林 on 16/12/17.

//? Copyright ? 2016年 夏玉林. All rights reserved.

//

#import "XYLPinView.h"

@implementation XYLPinView

/*

*? 傳入經(jīng)緯度結(jié)合體

*/

- (instancetype)initWithCoordinate:(CLLocationCoordinate2D )coordinate{

self = [super init];

if (self) {

self.coordinate = coordinate;

}

return self;

}

- (CLLocationCoordinate2D)coordinate

{

return _coordinate;

}

@end


?然后 是 調(diào)用百度SDK的添加覆蓋物api 接口


#pragma mark==========地圖的代理方法================- (BMKAnnotationView *)mapView:(BMKMapView *)mapView viewForAnnotation:(id)annotation{

typeof(self) weakSelf = self;

static NSString *identifier = @"userLocation";

//定位點的顯示

if ([annotation isKindOfClass:[XYLPinView class]]) {

static NSString *identifier = @"currentLocation";

XYLFenceMapAnnotationView *locationAnnotationView = (XYLFenceMapAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:identifier];

if (!locationAnnotationView) {

locationAnnotationView = [[XYLFenceMapAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:identifier];

locationAnnotationView.canShowCallout = NO;

}

return locationAnnotationView;

}

return nil;

}

?到這里 定位點功能實現(xiàn)了. ?還是心跳的,脈沖.?

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市辨萍,隨后出現(xiàn)的幾起案子纽甘,更是在濱河造成了極大的恐慌侈百,老刑警劉巖仙粱,帶你破解...
    沈念sama閱讀 212,816評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件阻星,死亡現(xiàn)場離奇詭異抗楔,居然都是意外死亡俊扭,警方通過查閱死者的電腦和手機(jī)队橙,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來萨惑,“玉大人捐康,你說我怎么就攤上這事∮拱” “怎么了解总?”我有些...
    開封第一講書人閱讀 158,300評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長姐仅。 經(jīng)常有香客問我花枫,道長,這世上最難降的妖魔是什么掏膏? 我笑而不...
    開封第一講書人閱讀 56,780評論 1 285
  • 正文 為了忘掉前任劳翰,我火速辦了婚禮,結(jié)果婚禮上馒疹,老公的妹妹穿的比我還像新娘佳簸。我一直安慰自己,他們只是感情好颖变,可當(dāng)我...
    茶點故事閱讀 65,890評論 6 385
  • 文/花漫 我一把揭開白布生均。 她就那樣靜靜地躺著听想,像睡著了一般。 火紅的嫁衣襯著肌膚如雪马胧。 梳的紋絲不亂的頭發(fā)上汉买,一...
    開封第一講書人閱讀 50,084評論 1 291
  • 那天,我揣著相機(jī)與錄音佩脊,去河邊找鬼录别。 笑死,一個胖子當(dāng)著我的面吹牛邻吞,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播葫男,決...
    沈念sama閱讀 39,151評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼抱冷,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了梢褐?” 一聲冷哼從身側(cè)響起旺遮,我...
    開封第一講書人閱讀 37,912評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎盈咳,沒想到半個月后耿眉,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,355評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡鱼响,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,666評論 2 327
  • 正文 我和宋清朗相戀三年鸣剪,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片丈积。...
    茶點故事閱讀 38,809評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡筐骇,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出江滨,到底是詐尸還是另有隱情铛纬,我是刑警寧澤,帶...
    沈念sama閱讀 34,504評論 4 334
  • 正文 年R本政府宣布唬滑,位于F島的核電站告唆,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏晶密。R本人自食惡果不足惜擒悬,卻給世界環(huán)境...
    茶點故事閱讀 40,150評論 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望稻艰。 院中可真熱鬧茄螃,春花似錦、人聲如沸连锯。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至拼弃,卻和暖如春夏伊,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背吻氧。 一陣腳步聲響...
    開封第一講書人閱讀 32,121評論 1 267
  • 我被黑心中介騙來泰國打工溺忧, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人盯孙。 一個月前我還...
    沈念sama閱讀 46,628評論 2 362
  • 正文 我出身青樓鲁森,卻偏偏與公主長得像,于是被迫代替她去往敵國和親振惰。 傳聞我的和親對象是個殘疾皇子歌溉,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,724評論 2 351

推薦閱讀更多精彩內(nèi)容

  • 出自http://my.oschina.net/are1OfBlog/blog/420034 摘要 現(xiàn)在很多社交、...
    JJO閱讀 4,125評論 4 19
  • http://www.cnblogs.com/kenshincui/p/4125570.html 摘要: 現(xiàn)在很多...
    大崔老師閱讀 3,278評論 1 2
  • 在iOS中隨處都可以看到絢麗的動畫效果骑晶,實現(xiàn)這些動畫的過程并不復(fù)雜痛垛,今天將帶大家一窺iOS動畫全貌。在這里你可以看...
    F麥子閱讀 5,104評論 5 13
  • 最近由于公司項目做的是國外的項目桶蛔,使用到了GoogleMaps SDK 匙头,期間磕磕碰碰各種查資料看官方文檔總算完成...
    SHMI閱讀 6,719評論 11 14
  • 天堂的花朵折射出她的美好, 一生一世去留下自信的獨白仔雷。 一個沒有人煙和光亮的地方蹂析, 你是怎樣會去觸動初春的暖? 四...
    碩果蕾蕾閱讀 212評論 0 3