3

我正在Track me我的代码中实现选项。CLLocationManager没有按预期工作。当我启动应用程序时,它保持在同一位置,CLLocationManager在 1 分钟内变化约 20-30 米。然后我保持不变。

如果我改变我的位置来跟踪同样的事情发生在开始 1 分钟CLLocationManager移动 20-30 分钟,然后以我的速度移动..

为什么会这样。。

 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {  

  self.locationManager = [[CLLocationManager alloc] init];
self.locationManager.delegate = self;
self.locationManager.distanceFilter = 0.0001;
self.locationManager.desiredAccuracy = kCLLocationAccuracyBest;
 }


-(void)start {


[self.locationManager startUpdatingLocation];    
}


 - (void)locationManager:(CLLocationManager*)manager
didUpdateToLocation:(CLLocation*)newLocation 
       fromLocation:(CLLocation*)oldLocation {

[self processLocationChange:newLocation fromLocation:oldLocation];

 }


 -(void)processLocationChange:(CLLocation*)newLocation fromLocation:oldLocation {

if (newLocation != oldLocation) {

    NSLog(@"Moved from %@ to %@", oldLocation, newLocation);

    CLLocation* lastKnownLocation = NULL;
    if ([self.locationPoints count] > 0) {
        lastKnownLocation = [self.locationPoints objectAtIndex:[self.locationPoints count] - 1];
    }
    else {
        lastKnownLocation = newLocation;
        self.bottomLeft = newLocation.coordinate;
        self.topRight = newLocation.coordinate;
    }

    // Check for new boundaries
    CLLocationCoordinate2D coords = newLocation.coordinate;
    if (coords.latitude < bottomLeft.latitude || coords.longitude < bottomLeft.longitude) {
        self.bottomLeft = coords;
        NSLog(@"Changed bottom left corner");
    }
    if (coords.latitude > topRight.latitude || coords.longitude > topRight.longitude) {
        self.topRight = coords;
        NSLog(@"Changed top right corner");
    }




    double speed = fabs(newLocation.speed);
    double deltaDist = fabs([newLocation distanceFromLocation:lastKnownLocation]);
    double newAvgSpeed = (self.totalDistance + deltaDist) / ((double)[self getElapsedTimeInMilliseconds] / 1000.0);
    double accuracy = newLocation.horizontalAccuracy;
    double alt = newLocation.altitude;

    NSLog(@"Change in position: %f", deltaDist);
    NSLog(@"Accuracy: %f", accuracy);
    NSLog(@"Speed: %f", speed);
    NSLog(@"Avg speed: %f", newAvgSpeed);




        self.totalDistance += deltaDist;
        self.currentSpeed = speed;
        self.avgSpeed = newAvgSpeed;
        self.altitude = alt;

        NSLog(@"Delta distance = %f", deltaDist);
        NSLog(@"New distance = %f", self.totalDistance);


        // Add new location to path
        [self.locationPoints addObject:newLocation];

        // Update stats display
        [self.first.start1 updateRunDisplay];

        // Update map view
        [self updateMap:lastKnownLocation newLocation:newLocation];

    }

}
4

2 回答 2

2

我在当前的计步器应用程序中遇到了同样的问题。我伸展,撞了我的头几天。然后我发现CLLocationManager无法跟踪 <5 米的距离和位置生成更新。我保留self.locationManager.distanceFilter =2.0;了它,它给了我位置更新,即使设备是静止的。所以我只是将距离过滤器更改为 5.0 米,它开始工作得很好。尝试走 5 米,它应该可以工作,我进行了测试,我所有的错误通知问题都消失了:

  self.locationManager.distanceFilter =5.0;

您正在采取self.locationManager.distancefilter=0.0001我认为CLLocationManager无法跟踪如此小的运动的能力。此外,您还需要过滤掉旧位置,即Apple 位置感知指南中提到的缓存位置更新。我在我的代码中使用了这个条件来过滤所有超过 5 秒的事件。

- (void)locationManager:(CLLocationManager *)manager
 didUpdateLocations:(NSArray *)locations
{
   CLLocation *currentLocation=[locations lastObject];
   NSDate* eventDate = currentLocation.timestamp;
   NSTimeInterval howRecent = [eventDate timeIntervalSinceNow];

   if(abs(howRecent)<5.0 && self.currentLocation.horizontalAccuracy<=10 && self.currentLocation.horizontalAccuracy>0)
   {
     //you have got fresh location event here.
   }
}
于 2013-01-19T08:22:53.900 回答
1

我认为让距离过滤器有效

self.locationManager.distanceFilter = kCLDistanceFilterNone;

您可以开始更新位置方法,但也可以尝试这种方法,这两种方法都是获取准确位置所必需的

[locationManager startMonitoringSignificantLocationChanges]; 
于 2013-01-19T08:16:10.517 回答