I am trying to come up with an approach for a iOS based solution where the application needs to calculate the distance traversed by a user. The use will be walking and capturing distance traversed from a start point to an end point (marked by the user using "Start" and "Stop" buttons). I have considered the GPS based CLLocationManager
approach with kCLLocationAccuracyBestForNavigation
as the accuracy setting. But the application needs to capture even a distance of 1 meter and I am doubtful whether GPS would be able to provide data with such accuracy.
So, what would be the best approach here? Thanks in advance for any insight.