高德持续定位疑问??
Posted ZHZMAREN
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了高德持续定位疑问??相关的知识,希望对你有一定的参考价值。
公司需要定制一款为数据部门同事采集位置信息的应用,但是需求是再无网络情况下的持续定位。数据上传以及数据补发。按照正常逻辑很快时间就做完了,使用的是高德的定位SDK包,代码如下:
+(instancetype)sharedManager
static dispatch_once_t onceToken;
static MobsLocationManager *_singleton = nil;
dispatch_once(&onceToken, ^
_singleton = [[MobsLocationManager alloc] init];
);
return _singleton;
-(AMapLocationManager *)locationManager
if (!_locationManager)
_locationManager = [[AMapLocationManager alloc]init];
_locationManager.delegate = self;
_locationManager.desiredAccuracy = kCLLocationAccuracyBest;
_locationManager.locationTimeout = 10;
_locationManager.distanceFilter = kCLDistanceFilterNone;
[_locationManager setPausesLocationUpdatesAutomatically:NO];
[_locationManager setAllowsBackgroundLocationUpdates:YES];
_isLocationing = NO;
return _locationManager;
- (void)setUpLocationManagerUpdateLocationHandle:(LocationManagerDidUpdateLocationHandle)updateLocationHandle
_updateLocationHandle = updateLocationHandle;
// 开始定位:isLocationing这个属性只能在登陆成功之后的列表界面设置YES,就是防止在注销之后程序放在后台后台任务激活定位模块。
- (void)startSerialLocation
if (self.canLocationFlag == NO && self.isLocationing == NO)
return ;
self.isLocationing = YES;
self.locationManager.delegate = self;
[self.locationManager startUpdatingLocation];
// 停止定位:只能在注销之后停止定位。isLocationing = NO
- (void)stopSerialLocation
self.isLocationing = NO;
self.locationManager.delegate = nil;
[self.locationManager stopUpdatingLocation];
- (BOOL)isCanLocationFlag
if ([CLLocationManager locationServicesEnabled] && ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusAuthorizedAlways || [CLLocationManager authorizationStatus] == kCLAuthorizationStatusNotDetermined || [CLLocationManager authorizationStatus] == kCLAuthorizationStatusAuthorizedWhenInUse))
return YES;
else
return NO;
- (BOOL)hasLocation
return [[ZHZUserDefaults objectForKey:mUserCurrentLongitude] length] && [[ZHZUserDefaults objectForKey:mUserCurrentLatitude] length];
代理回调:
而且后台权限已经打开:
使用测试过程中,几乎是完美的(从排除某些业务逻辑Bug),但是!!!!!!
就是这个但是,,,,
好像系统确实在某个时间把我的程序给kill掉了。然后各种排查问题,最后甩包给高德定位的SDK的问题。
参考资料:
尝试着用自带的定位功能的封装了一个网络获取工具的类,测试过程中是没有问题的。但是高德定位的测试过程中也是没有问题的。就是给数据测试部门的时候他们外出测试,就会产生bug(当然肯定是偶发情况,排除系统崩掉的情况),而且人家只是使用,跟他们争论多了闲的自己素质不行,没办吧,只能高德背锅了~~~~
http://www.cnblogs.com/tianlin106/p/6029429.html
http://blog.csdn.net/jia12216/article/details/49281773
+
以上是关于高德持续定位疑问??的主要内容,如果未能解决你的问题,请参考以下文章