From 850563a56a7b76f7e1888732d478a8df36f5720f Mon Sep 17 00:00:00 2001 From: Marcos Caceres Date: Wed, 5 Jun 2024 09:15:46 +1000 Subject: [PATCH] use dl/dt/dd --- index.html | 113 ++++++++++++++++++++++++++++++++++------------------- 1 file changed, 72 insertions(+), 41 deletions(-) diff --git a/index.html b/index.html index 33b7c00..2bd5c1f 100644 --- a/index.html +++ b/index.html @@ -849,8 +849,8 @@

than |cacheTime|, and |cachedPosition|.{{GeolocationPosition/[[isHighAccuracy]]}} equals - |options|.{{PositionOptions/enableHighAccuracy}}, set - |position| to |cachedPosition|. , + set |position| to |cachedPosition|. :
  1. [=Queue a task=] on the [=geolocation task @@ -894,43 +894,74 @@

    enhancements to attribute accuracy and clarity.
      -
    1. Let |positionData| be a [=map=] that will hold the - acquired position data. +
    2. Let |positionData| be a [=map=] with the following + name/value pairs based on the acquired the position data: +
      +
      +
      +
      + "longitude" +
      +
      + A {{double}} that represents the longitude + coordinates on the Earth's surface in degrees, + using the [[WGS84]] coordinate system. + Longitude measures how far east or west a point + is from the Prime Meridian. +
      +
      + "altitude" +
      +
      + A {{double?}} that represents the altitude in + meters above the [[WGS84]] ellipsoid, or `null` + if not available. Altitude measures the height + above sea level. +
      +
      + "accuracy" +
      +
      + A non-negative {{double}} that represents the + accuracy value indicating the 95% confidence + level in meters. Accuracy measures how close + the measured coordinates are to the true + position. +
      +
      + "altitudeAccuracy" +
      +
      + A non-negative {{double?}} that represents the + altitude accuracy, or `null` if not available, + indicating the 95% confidence level in meters. + Altitude accuracy measures how close the + measured altitude is to the true altitude. +
      +
      + "speed" +
      +
      + A non-negative {{double?}} that represents the + speed in meters per second, or `null` if not + available. Speed measures how fast the device + is moving. +
      +
      + "heading" +
      +
      + A {{double?}} that represents the heading in + degrees, or `null` if not available, or `NaN` + if the device is stationary. Heading measures + the direction in which the device is moving + relative to true north. +
      +
      +
      +
    3. -
    4. Set |positionData|["longitude"] to represent the - longitude coordinates on the Earth's surface as a - {{double}} in degrees, using the [[WGS84]] coordinate - system. Longitude measures how far east or west a point - is from the Prime Meridian. -
    5. -
    6. Set |positionData|["altitude"] to represent the - altitude as a {{double?}} in meters above the [[WGS84]] - ellipsoid or `null` if not available. Altitude measures - the height above sea level. -
    7. -
    8. Set |positionData|["accuracy"] to represent the - accuracy as a non-negative {{double}} indicating the 95% - confidence level in meters. Accuracy measures how close - the measured coordinates are to the true position. -
    9. -
    10. Set |positionData|["altitudeAccuracy"] to represent - the altitude accuracy as a non-negative {{double?}} or - `null` if not available, indicating the 95% confidence - level in meters. Altitude accuracy measures how close the - measured altitude is to the true altitude. -
    11. -
    12. Set |positionData|["speed"] to represent the speed as - a non-negative {{double?}} in meters per second or `null` - if not available. Speed measures how fast the device is - moving. -
    13. -
    14. Set |positionData|["heading"] to represent the - heading as a {{double?}} in degrees or `null` if not - available. If the device is stationary, set to NaN. - Heading measures the direction in which the device is - moving relative to true north. -
    15. -
    16. Set |position| be [=a new `GeolocationPosition`=] +
    17. Set |position| to [=a new `GeolocationPosition`=] passing |positionData|, |acquisitionTime| and |options|.{{PositionOptions/enableHighAccuracy}}.
    18. @@ -939,7 +970,7 @@

      -
    1. Set |position| be [=a new `GeolocationPosition`=] +
    2. Set |position| to [=a new `GeolocationPosition`=] passing |acquisitionTime| and |options|.{{PositionOptions/enableHighAccuracy}}.
    3. @@ -1278,8 +1309,8 @@

      A new `GeolocationPosition` is constructed with [=map=]