Which of the following describes a reason why the location sensor would be used in a project?

This section describes the status of this document at the time of its publication. A list of current W3C publications and the latest revision of this technical report can be found in the W3C technical reports index at https://www.w3.org/TR/.

This document was published by the Devices and Sensors Working Group as a Working Draft using the Recommendation track. This document is intended to become a W3C Recommendation.

If you wish to make comments regarding this document, please send them to (subscribe, archives). When sending e-mail, please put the text “geolocation-sensor” in the subject, preferably like this: “[geolocation-sensor] …summary of comment…”. All comments are welcome.

Publication as a Working Draft does not imply endorsement by W3C and its Members. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.

This document was produced by a group operating under the W3C Patent Policy. W3C maintains a public list of any patent disclosures made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains Essential Claim(s) must disclose the information in accordance with section 6 of the W3C Patent Policy.

This document is governed by the 2 November 2021 W3C Process Document.

The Devices and Sensors Working Group will perform a round of self-review and revisions on the security and privacy aspects of the API before requesting horizontal review. Existing security and privacy issues can be found here.

The GeolocationSensor API extends the Sensor interface [GENERIC-SENSOR] to provide information about the geolocation of the hosting device.

The feature set of the GeolocationSensor is similar to that of the Geolocation API [GEOLOCATION-API], but it is surfaced through a modern API that is consistent across contemporary sensor APIs, improves security and privacy, and is extensible. The API aims to be polyfillable (example) on top of the existing Geolocation API.

Get a new geolocation reading every second:

const geo = new GeolocationSensor({ frequency: 1 }); geo.start(); geo.onreading = () => console.log(`lat: ${geo.latitude}, long: ${geo.longitude}`); geo.onerror = event => console.error(event.error.name, event.error.message);

Get a one-shot geolocation reading:

GeolocationSensor.read() .then(geo => console.log(`lat: ${geo.latitude}, long: ${geo.longitude}`)) .catch(error => console.error(error.name));

Note: Investigate any geolocation-specific security and privacy considerations that are not mitigated by the Generic Sensor API [GENERIC-SENSOR], and define geolocation-specific mitigations.

The term geolocation refers to the real-world geographic location of the hosting device represented in geographic coordinates [WGS84].

Note: An implementation can use multiple location information sources to acquire geolocation information, and this specification is agnostic with respect to those sources.

The Geolocation Sensor sensor type’s associated Sensor subclass is the GeolocationSensor class.

The Geolocation Sensor has an associated PermissionName which is "geolocation".

The Geolocation Sensor is a policy-controlled feature identified by the string "geolocation". Its default allowlist is 'self'.

A latest geolocation reading is a latest reading for a Sensor of Geolocation Sensor sensor type. It includes entries whose keys are "latitude", "longitude", "altitude", "accuracy", "altitudeAccuracy", "heading", "speed" and whose values contain the device’s geolocation.

Note: Consider adding a visual of the standard coordinate system for the Earth.

[SecureContext, Exposed=(DedicatedWorker, Window)] interface GeolocationSensor : Sensor { constructor(optional GeolocationSensorOptions options = {}); static Promise<GeolocationSensorReading> read(optional ReadOptions readOptions = {}); readonly attribute unrestricted double? latitude; readonly attribute unrestricted double? longitude; readonly attribute unrestricted double? altitude; readonly attribute unrestricted double? accuracy; readonly attribute unrestricted double? altitudeAccuracy; readonly attribute unrestricted double? heading; readonly attribute unrestricted double? speed; }; dictionary GeolocationSensorOptions : SensorOptions { // placeholder for GeolocationSensor-specific options }; dictionary ReadOptions : GeolocationSensorOptions { AbortSignal? signal; }; dictionary GeolocationSensorReading { DOMHighResTimeStamp? timestamp; double? latitude; double? longitude; double? altitude; double? accuracy; double? altitudeAccuracy; double? heading; double? speed; };

Normative changes to the Coordinates interface of the Geolocation API are the following:

  • Use unrestricted double to not throw TypeError on NaN, +Infinity or −Infinity. (Geolocation API defines NaN as a valid value for heading, yet uses double as its type.)
  • Use nullable to allow all attributes to default to null. (Geolocation API does not provide synchronous means to access these attributes, thus latitude, longitude, and altitude are not nullable and "must be supported by all implementations".)

To construct a GeolocationSensor object the user agent must invoke the construct a geolocation sensor object abstract operation.

The read() method, when called, must run the following algorithm:

input

options, a ReadOptions object.

output

p, a promise.

Implementations can reuse the same promise for multiple concurrent calls within the same browsing context if the arguments passed to read() are the same.

To resolve a geolocation promise means to run the following steps:

The latitude attribute of the GeolocationSensor interface returns the result of invoking get value from latest reading with this and "latitude" as arguments. It represents the latitude coordinate of the geolocation in decimal degrees [WGS84].

The longitude attribute of the GeolocationSensor interface returns the result of invoking get value from latest reading with this and "longitude" as arguments. It represents the longitude coordinate of the geolocation in decimal degrees [WGS84].

The altitude attribute of the GeolocationSensor interface returns the result of invoking get value from latest reading with this and "altitude" as arguments. It represents the geolocation in meters above the WGS 84 ellipsoid [WGS84].

The accuracy attribute of the GeolocationSensor interface returns the result of invoking get value from latest reading with this and "accuracy" as arguments. It represents the accuracy of the latest reading["latitude"] value and latest reading["longitude"] value in meters with a 95% confidence level.

If the latest reading["latitude"] value is null or latest reading["longitude"] value is null, it must return null.

The altitudeAccuracy attribute of the GeolocationSensor interface returns the result of invoking get value from latest reading with this and "altitudeAccuracy" as arguments. It represents the accuracy of the latest reading["altitude"] value in meters with a 95% confidence level.

If the latest reading["altitude"] value is null, it must return null.

The heading attribute of the GeolocationSensor interface returns the result of invoking get value from latest reading with this and "heading" as arguments. It represents the direction of travel in degrees counting clockwise relative to the true north in the range 0 ≤ heading ≤ 360.

The speed attribute of the GeolocationSensor interface returns the result of invoking get value from latest reading with this and "speed" as arguments. It represents the magnitude of the horizontal component of the velocity in meters per second.

This section extends the automation section defined in the Generic Sensor API [GENERIC-SENSOR] to provide mocking information about the geolocation of the hosting device for the purposes of testing a user agent’s implementation of GeolocationSensor API.

The GeolocationSensor class has an associated mock sensor type which is "geolocation", its mock sensor reading values dictionary is defined as follows:

dictionary GeolocationReadingValues { required double? latitude; required double? longitude; required double? altitude; required double? accuracy; required double? altitudeAccuracy; required double? heading; required double? speed; };

The mentioned use cases can roughly be grouped into four categories:

  • Foreground operations:

    • Getting a one-off geolocation update.

    • Getting continuous geolocation updates (aka. foreground geotracking).

  • Background operations:

    • Getting continuous geolocation updates (aka. background geotracking).

    • Getting a one-off geolocation fence alert (aka. background geofencing).

Note: Only the foreground operations were possible with [GEOLOCATION-API], the background operations are completely novel.

Core constraints when obtaining the gelocation are accuracy (how close to the actual position of the user is the determined position) and latency (how long does the user want to wait for a result). Both are tradeoffs: one can trade faster results for lower accuracy and vice versa.

A common theme is to first obtain a rough estimation that then gets refined over time, for example based initially on surrounding WiFi signals (which is fast to obtain) and then eventually based on precise GPS data (which may take some time to find a signal).

In the following, we list use cases based on the previously defined categories.

Note: The categories are not mutually exclusive and overlaps exist. A task might start in the foreground, then continue in the background (for example, while the user quickly responds to an incoming email), and then eventually terminate in the foreground when the user multitasks back.

A mapping application can use the Geolocation Sensor API data of a user to locate them on the map, essentially responding to the question "Where am I right now?"

Someone visiting a foreign city could access a web application that allows users to search or browse through a database of tourist attractions. Using the Geolocation Sensor API, the web application has access to the user’s approximate current position and is therefore able to rank the search results by proximity to the user’s location.

A widget-like web application that shows the weather or news that are relevant to the user’s current area can use the Geolocation Sensor API to register for location updates. If the user’s position changes, the widget can adapt the content accordingly.

A tour guide web application can use the Geolocation Sensor API to monitor the user’s position and trigger visual or audio notifications when interesting places are in the vicinity. An online task management system can trigger reminders when the user is in the proximity of landmarks that are associated with certain tasks. This use case assumes active usage of the application in the foreground.

A user finds themselves in an unfamiliar area. They want to check their position so they use their handheld device to navigate to a web-based mapping application that can pinpoint their exact location on the map using the Geolocation Sensor API. They then ask the web application to provide driving directions from their current position to their desired destination, essentially responding to the question "Where am I going?".

A social networking application allows its users to automatically tag their status updates with location information. It does this by monitoring the user’s position with the Geolocation Sensor API. Each user can control the granularity of the location information (e.g., city or neighborhood level) that is shared with the other users. Any user can also see their network of friends and get real-time updates about their current location, granted they have opted in to their location data being shared. This use case intentionally conflates foreground location tagging and background location sharing.

A mapping application can help the user navigate along a routeby providing detailed turn-by-turn directions. The application does this by registering with the Geolocation Sensor API to receive repeated location updates of the user’s position. These updates are delivered as soon as the implementing user agent determines that the position of the user has changed, which allows the application to anticipate any changes of direction that the user might need to do. The application can be in the foreground, but likewise can be backgrounded, for example, when the user turns their device off to save battery on a long highway route section without side roads.

A web application can track a user’s sports activity, for example, a marathon run or a bicycle race. Therefore, the application does not need to be on the screen, but would be backgrounded while the user performs their activity, maybe with their handheld device strapped to their arm.

A web application on a handheld device can notify a user of interesting available properties in a neighborhood they are passing by where the property fits the user’s previously specified search criteria, for example, 3 bedroom apartments with balcony. This is based on the assumption that the number of possible matches is high, that is, impossible to realize with geofences as the amount of required geofences would be too high.

In cultural spaces like museums, festivals, exhibitions, etc., web applications can react to where the user is or what they are seeing to cue different experiences and content.

Reminder and to-do web applications can use a geofence to remind the user to do something when they cross it, for example, to buy milk when they are near the supermarket.

Travel applications can show venue specific data like WiFi passwords, the user’s booking confirmation etc. only within geofence boundaries.

Ticketing or booking applications can bring up a ticket notification with a QR or bar code once the user is near the venue of a concert or sports event or when they reach their rental car counter or similar.

Users can be informed if their designated driver reaches a pre-defined pickup point.

Given their previous consent, a user with a retailer’s web application installed on their handheld device can be alerted about special offers or location-based coupons when they are in vicinity of a physical presence of the retailer. Further, the in-store experience can be enriched, for example, the retailer can let the user know something they have looked at before is actually available for pick up nearby.

Thanks to Tobie Langel for the work on Generic Sensor API and the early geolocation.js polyfill.

Thanks to Kenneth Rohde Christiansen for the geolocation-sensor.js polyfill and design proposals during the incubation phase.

Special thanks to the Geolocation Working Group participants for their work on the Geolocation API from 2008 until 2017.

  • accuracy
  • altitude
  • altitudeAccuracy
  • Construct a geolocation sensor object

    , in § 6

  • constructor()

    , in § 5.1

  • constructor(options)

    , in § 5.1

  • geolocation

    , in § 4

  • GeolocationReadingValues

    , in § 7.1

  • Geolocation Sensor

    , in § 4

  • GeolocationSensor

    , in § 5.1

  • GeolocationSensor()

    , in § 5.1

  • GeolocationSensor(options)

    , in § 5.1

  • GeolocationSensorOptions

    , in § 5.1

  • GeolocationSensorReading

    , in § 5.1

  • heading
  • latest geolocation reading

    , in § 4

  • latitude
  • longitude
  • read()

    , in § 5.1

  • ReadOptions

    , in § 5.1

  • read(readOptions)

    , in § 5.1

  • resolve a geolocation promise

    , in § 5.1.1

  • signal

    , in § 5.1

  • speed
  • timestamp

    , in § 5.1

https://dom.spec.whatwg.org/#abortsignalReferenced in:
  • 5.1. The GeolocationSensor Interface
https://dom.spec.whatwg.org/#abortsignal-abort-reasonReferenced in:
  • 5.1.1. GeolocationSensor.read() (2)
https://dom.spec.whatwg.org/#abortsignal-abortedReferenced in:
  • 5.1.1. GeolocationSensor.read()
https://dom.spec.whatwg.org#abortsignal-addReferenced in:
  • 5.1.1. GeolocationSensor.read()
https://w3c.github.io/sensors/#dom-mocksensortype-geolocationReferenced in: https://w3c.github.io/sensors/#sensorReferenced in:
  • 1. Introduction
  • 4. Model (2)
  • 5.1. The GeolocationSensor Interface
https://w3c.github.io/sensors/#dictdef-sensoroptionsReferenced in:
  • 5.1. The GeolocationSensor Interface
https://w3c.github.io/sensors#automationReferenced in: https://w3c.github.io/sensors#check-sensor-policy-controlled-featuresReferenced in:
  • 6.1. Construct a geolocation sensor object
https://w3c.github.io/sensors#extensibilityReferenced in: https://w3c.github.io/sensors/#get-value-from-latest-readingReferenced in: https://w3c.github.io/sensors#initialize-a-sensor-objectReferenced in:
  • 6.1. Construct a geolocation sensor object
https://w3c.github.io/sensors#latest-readingReferenced in: https://w3c.github.io/sensors#mock-sensor-reading-valuesReferenced in: https://w3c.github.io/sensors#mock-sensor-typeReferenced in: https://w3c.github.io/sensors/#notify-errorReferenced in:
  • 5.1.1. GeolocationSensor.read() (2)
https://w3c.github.io/sensors/#notify-new-readingReferenced in:
  • 5.1.1. GeolocationSensor.read()
https://w3c.github.io/sensors#security-and-privacyReferenced in: https://w3c.github.io/sensors#sensor-typeReferenced in: https://w3c.github.io/sensors/#dom-sensor-startReferenced in:
  • 5.1.1. GeolocationSensor.read()
https://w3c.github.io/sensors/#dom-sensor-stopReferenced in:
  • 5.1.1. GeolocationSensor.read() (2) (3)
http://w3c.github.io/hr-time/#dom-domhighrestimestampReferenced in:
  • 5.1. The GeolocationSensor Interface
https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallelReferenced in:
  • 5.1.1. GeolocationSensor.read()
https://infra.spec.whatwg.org/#map-entryReferenced in: https://infra.spec.whatwg.org/#list-iterateReferenced in:
  • 5.1.1. GeolocationSensor.read()
https://infra.spec.whatwg.org/#map-getting-the-keysReferenced in: https://infra.spec.whatwg.org/#map-setReferenced in:
  • 5.1.1. GeolocationSensor.read()
https://infra.spec.whatwg.org/#map-getting-the-valuesReferenced in: https://w3c.github.io/webappsec-permissions-policy/#default-allowlistReferenced in: https://w3c.github.io/webappsec-permissions-policy/#policy-controlled-featureReferenced in: https://webidl.spec.whatwg.org/#idl-DOMExceptionReferenced in: https://webidl.spec.whatwg.org/#ExposedReferenced in:
  • 5.1. The GeolocationSensor Interface
https://webidl.spec.whatwg.org/#idl-promiseReferenced in:
  • 5.1. The GeolocationSensor Interface
https://webidl.spec.whatwg.org/#SecureContextReferenced in:
  • 5.1. The GeolocationSensor Interface
https://webidl.spec.whatwg.org/#securityerrorReferenced in:
  • 6.1. Construct a geolocation sensor object
https://webidl.spec.whatwg.org/#idl-doubleReferenced in: https://webidl.spec.whatwg.org/#dfn-throwReferenced in:
  • 6.1. Construct a geolocation sensor object
https://webidl.spec.whatwg.org/#idl-unrestricted-doubleReferenced in:
  • 5.1. The GeolocationSensor Interface (2) (3) (4) (5) (6) (7)
  • [DOM] defines the following terms:
    • AbortSignal

    • abort reason

    • aborted

    • add the following abort steps

  • [GENERIC-SENSOR] defines the following terms:
    • "geolocation"

    • Sensor

    • SensorOptions

    • automation

    • check sensor policy-controlled features

    • extensible

    • get value from latest reading

    • initialize a sensor object

    • latest reading

    • mock sensor reading values

    • mock sensor type

    • notify error

    • notify new reading

    • security and privacy

    • sensor type

    • start()

    • stop()

  • [hr-time-2] defines the following terms:
  • [HTML] defines the following terms:
  • [INFRA] defines the following terms:
    • entry

    • for each

    • keys

    • set

    • values

  • [permissions-policy-1] defines the following terms:
    • default allowlist

    • policy-controlled feature

  • [WEBIDL] defines the following terms:
    • DOMException

    • Exposed

    • Promise

    • SecureContext

    • SecurityError

    • double

    • throw

    • unrestricted double

[DOM] Anne van Kesteren. DOM Standard. Living Standard. URL: https://dom.spec.whatwg.org/ [GENERIC-SENSOR] Rick Waldron. Generic Sensor API. URL: https://w3c.github.io/sensors/ [HR-TIME-2] Ilya Grigorik. High Resolution Time Level 2. URL: https://w3c.github.io/hr-time/ [HTML] Anne van Kesteren; et al. HTML Standard. Living Standard. URL: https://html.spec.whatwg.org/multipage/ [INFRA] Anne van Kesteren; Domenic Denicola. Infra Standard. Living Standard. URL: https://infra.spec.whatwg.org/ [PERMISSIONS-POLICY-1] Ian Clelland. Permissions Policy. URL: https://w3c.github.io/webappsec-permissions-policy/ [WEBIDL] Edgar Chen; Timothy Gu. Web IDL Standard. Living Standard. URL: https://webidl.spec.whatwg.org/ [WGS84] National Imagery and Mapping Agency. Department of Defence World Geodetic System 1984. Technical Report, Third Edition. URL: http://earth-info.nga.mil/GandG/publications/tr8350.2/wgs84fin.pdf [GEOLOCATION-API] Andrei Popescu. Geolocation API Specification 2nd Edition. URL: https://w3c.github.io/geolocation-api/ [SecureContext, Exposed=(DedicatedWorker, Window)] interface GeolocationSensor : Sensor { constructor(optional GeolocationSensorOptions options = {}); static Promise<GeolocationSensorReading> read(optional ReadOptions readOptions = {}); readonly attribute unrestricted double? latitude; readonly attribute unrestricted double? longitude; readonly attribute unrestricted double? altitude; readonly attribute unrestricted double? accuracy; readonly attribute unrestricted double? altitudeAccuracy; readonly attribute unrestricted double? heading; readonly attribute unrestricted double? speed; }; dictionary GeolocationSensorOptions : SensorOptions { // placeholder for GeolocationSensor-specific options }; dictionary ReadOptions : GeolocationSensorOptions { AbortSignal? signal; }; dictionary GeolocationSensorReading { DOMHighResTimeStamp? timestamp; double? latitude; double? longitude; double? altitude; double? accuracy; double? altitudeAccuracy; double? heading; double? speed; }; dictionary GeolocationReadingValues { required double? latitude; required double? longitude; required double? altitude; required double? accuracy; required double? altitudeAccuracy; required double? heading; required double? speed; }; #geolocationReferenced in: #geolocation-sensorReferenced in: #latest-geolocation-readingReferenced in:
  • 5.1.1. GeolocationSensor.read()
#geolocationsensorReferenced in: #dom-geolocationsensor-readReferenced in:
  • 5.1.1. GeolocationSensor.read() (2)
#dom-geolocationsensor-latitudeReferenced in:
  • 5.1.2. GeolocationSensor.latitude
#dom-geolocationsensor-longitudeReferenced in:
  • 5.1.3. GeolocationSensor.longitude
#dom-geolocationsensor-altitudeReferenced in:
  • 5.1.4. GeolocationSensor.altitude
#dom-geolocationsensor-accuracyReferenced in:
  • 5.1.5. GeolocationSensor.accuracy
#dom-geolocationsensor-altitudeaccuracyReferenced in:
  • 5.1.6. GeolocationSensor.altitudeAccuracy
#dom-geolocationsensor-headingReferenced in:
  • 5.1.7. GeolocationSensor.heading
#dom-geolocationsensor-speedReferenced in:
  • 5.1.8. GeolocationSensor.speed
#dictdef-geolocationsensoroptionsReferenced in: #dictdef-readoptionsReferenced in:
  • 5.1. The GeolocationSensor Interface
  • 5.1.1. GeolocationSensor.read()
#dictdef-geolocationsensorreadingReferenced in:
  • 5.1. The GeolocationSensor Interface
  • 5.1.1. GeolocationSensor.read()
#resolve-a-geolocation-promiseReferenced in:
  • 5.1.1. GeolocationSensor.read()
#construct-a-geolocation-sensor-objectReferenced in: