i am using LocationManager
to get user location coordinates as below..
locationManager.requestAlwaysAuthorization()
locationManager.requestWhenInUseAuthorization()
locationManager.startUpdatingLocation()
locationManager.desiredAccuracy = kCLLocationAccuracyBest
locationManager.delegate = self
locationManager.distanceFilter = 50
I noticed i get different coordinates when running on two devices iphone5s and iphone 6.and the distance between them is like about 70 -100 meters when i use distanceFromLocation
method
Why is this happening?
How to get the best user location??