gpt4 book ai didi

ios - 如何在ios中以终止状态获取每200米的位置

转载 作者:行者123 更新时间:2023-11-28 17:51:12 27 4
gpt4 key购买 nike

我正在尝试获取用户在应用程序终止状态下的位置。我正在通过 startMonitoringSignificantLocationChanges 执行此操作,但它会在 3 公里或 5 分钟后提供位置。所以无法正确创建路线。请指导我如何做到这一点。

 if (_anotherLocationManager)
[_anotherLocationManager stopMonitoringSignificantLocationChanges];

self.anotherLocationManager = [[CLLocationManager alloc]init];
_anotherLocationManager.delegate = self;
_anotherLocationManager.desiredAccuracy = kCLLocationAccuracyBestForNavigation;
_anotherLocationManager.activityType = CLActivityTypeOtherNavigation;

if(IS_OS_8_OR_LATER) {
[_anotherLocationManager requestAlwaysAuthorization];
}
[_anotherLocationManager startMonitoringSignificantLocationChanges];

最佳答案

我自己解决了我的问题...

创建一个 locationManager 对象并像这样分配它

 self.locationManager = [[CLLocationManager alloc]init]; // initializing locationManager
_locationManager.desiredAccuracy = kCLLocationAccuracyBestForNavigation; // setting the accuracy
[self.locationManager requestAlwaysAuthorization];

if([self.locationManager respondsToSelector:@selector(allowsBackgroundLocationUpdates)]) {
[self.locationManager setAllowsBackgroundLocationUpdates: YES];
}

self.locationManager.distanceFilter = 20.0;

[self.locationManager startMonitoringSignificantLocationChanges];

self.locationManager.activityType=CLActivityTypeAutomotiveNavigation;

[self.locationManager startUpdatingLocation];

self.locationManager.pausesLocationUpdatesAutomatically = YES;

self.locationManager.delegate = self;

现在设置位置管理器委托(delegate)方法。

- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {
{
if (newLocation.speed>7){
// here you got location, i settled speed 7 for my convenience.
}

if (newLocation.horizontalAccuracy <= self.locationManager.desiredAccuracy) {
//Desired location Found
[self.locationManager stopUpdatingLocation ];
}
}

你必须写这个stopUpdatingLocation,否则你的电池消耗会增加这么高。

关于ios - 如何在ios中以终止状态获取每200米的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35129918/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com