Web APIs (navigator, geolocation, history)

What is the purpose of the enableHighAccuracy option in this geolocation request?
navigator.geolocation.getCurrentPosition(success, error, {
  enableHighAccuracy: true,
  timeout: 5000,
  maximumAge: 0
});
Next Question (6/40)