How do I force minimum accuracy for PhoneGap GPS Geolocation?
问题 I am building an app that requires somewhat accurate GPS position of the user. Right now I'm using: navigator.geolocation.getCurrentPosition(geolocationSuccess,geolocationError, { maximumAge: 60000, timeout:8000 , enableHighAccuracy: true } ); When running the app however, I'm getting position.coords.accuracy with a value of 29000 sometimes or higher. This is not acceptable. How can I force a lower (more accurate) GPS position? It's happening on both iOS and Android. Note I'm using <gap