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;し、デバイスが静止していても位置情報を更新しました. だから、distancefilter を 5.0 メートルに変更したところ、うまく機能し始めました。動作するはずの 5 メートルを試してみてください。テストしたところ、間違った通知の問題はすべて解消されました。

  self.locationManager.distanceFilter =5.0;

あなたはそのような小さな動きを追跡するself.locationManager.distancefilter=0.0001ための容量を超えていると思います。また、Apple の Location Awareness Guide にCLLocationManager記載されているように、古い場所、つまりキャッシュされた場所の更新を除外する必要があります。コードでこの条件を使用して、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 に答える