Web APIs (navigator, geolocation, history)

What would be the effect of setting maximumAge to 60000 in the options object of this geolocation request?
if (navigator.geolocation) {
  navigator.geolocation.getCurrentPosition(
    (position) => {
      const latitude = position.coords.latitude;
      const longitude = position.coords.longitude;
      displayMap(latitude, longitude);
    },
    (error) => {
      switch(error.code) {
        case error.PERMISSION_DENIED:
          showError("User denied the request for geolocation.");
          break;
        case error.POSITION_UNAVAILABLE:
          showError("Location information is unavailable.");
          break;
        case error.TIMEOUT:
          showError("The request to get user location timed out.");
          break;
      }
    },
    {
      enableHighAccuracy: true,
      timeout: 5000,
      maximumAge: 0
    }
  );
}
Next Question (4/40)