I am working with CLLocation in my app. What I want to do is if I move a distance of 100m then I want to call a server api but if it is less than 100m or the phone is stationary no server call to be made.
What I am currently doing is
CLLocationManager *locationManager = [[CLLocationManager alloc]init];
locationManager.delegate = self;
_locationManager.desiredAccuracy = kCLLocationAccuracyHundredMeters;
_locationManager.distanceFilter = 1000;
[_locationManager setActivityType:CLActivityTypeAutomotiveNavigation];
[_locationManager setPausesLocationUpdatesAutomatically:YES];
Now in the
- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
I am calling a delegate to call the server api, but the problem is this delegate function didupdatelocations function is called continuously (even if I dont move) thus calling the server api. But I want to call it only when the user has moved say 100m. I am working on simulator.
I am new to this area, can anyone suggest how to do it?
Hope you understand the problem Thanks in advance.
EDIT:
Even after setting desiredDistance to 100m the didupdatelocation is called continuously.
Set the
distanceFilter
property of the CLLocationManager to 100 meters and you will only get events when that much movement has happened.