Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 2.41 KB

File metadata and controls

46 lines (33 loc) · 2.41 KB
title slug page-type browser-compat
GeolocationCoordinates
Web/API/GeolocationCoordinates
web-api-interface
api.GeolocationCoordinates

{{securecontext_header}}{{APIRef("Geolocation API")}}

The GeolocationCoordinates interface represents the position and altitude of the device on Earth, as well as the accuracy with which these properties are calculated.

Instance properties

The GeolocationCoordinates interface doesn't inherit any properties.

  • {{domxref("GeolocationCoordinates.latitude")}} {{ReadOnlyInline}}
    • : Returns a double representing the position's latitude in decimal degrees.
  • {{domxref("GeolocationCoordinates.longitude")}} {{ReadOnlyInline}}
    • : Returns a double representing the position's longitude in decimal degrees.
  • {{domxref("GeolocationCoordinates.altitude")}} {{ReadOnlyInline}}
    • : Returns a double representing the position's altitude in meters, relative to nominal sea level. This value can be null if the implementation cannot provide the data.
  • {{domxref("GeolocationCoordinates.accuracy")}} {{ReadOnlyInline}}
    • : Returns a double representing the accuracy of the latitude and longitude properties, expressed in meters.
  • {{domxref("GeolocationCoordinates.altitudeAccuracy")}} {{ReadOnlyInline}}
    • : Returns a double representing the accuracy of the altitude expressed in meters. This value can be null if the implementation cannot provide the data.
  • {{domxref("GeolocationCoordinates.heading")}} {{ReadOnlyInline}}
    • : Returns a double representing the direction towards which the device is facing. This value, specified in degrees, indicates how far off from heading true north the device is. 0 degrees represents true north, and the direction is determined clockwise (which means that east is 90 degrees and west is 270 degrees). If speed is 0, heading is {{jsxref("NaN")}}. If the device is unable to provide heading information, this value is null.
  • {{domxref("GeolocationCoordinates.speed")}} {{ReadOnlyInline}}
    • : Returns a double representing the velocity of the device in meters per second. This value can be null.

Instance methods

The GeolocationCoordinates interface neither implements, nor inherits any method.

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also