Reputation:
i want accurate current location , i got current location 100 meters aways from my current location
this is my code if you know any way to get pin point accuracy
let manager = CLLocationManager()
manager.desiredAccuracy = kCLLocationAccuracyBestForNavigation
manager.delegate = self
manager.requestAlwaysAuthorization()
manager.allowsBackgroundLocationUpdates = true
manager.pausesLocationUpdatesAutomatically = false
Upvotes: 0
Views: 1280
Reputation: 542
The accuracy of Location depends on:
manager.desiredAccuracy = kCLLocationAccuracyBestForNavigation
I am working on a Workout project also, already saw a lot of Location point that has hozirontalAccuracy below 5 meters. And, we just hope that the user's GPS signal is strong and stable, there is no other method to improve now.
Upvotes: 0