Version: Smart Feature Phone 2.5Version: Smart Feature Phone 2.6
Geolocation
Description#
The Geolocation interface represents an object able to programmatically obtain the position of the device. It gives Web content access to the location of the device. This allows a Web site or app to offer customized results based on the user's location. Notice that 'geolocation' permission is required for packaged app to use Geolocation API. (i.e. The developer must add the permisson to the manifest.webapp)
An object with this interface is obtained using the navigator.geolocation property implemented by the Navigator object.
Interface overview#
Properties#
The Geolocation interface neither implements, nor inherits any property.
Methods#
The Geolocation interface doesn't inherit any method.
Geolocation.getCurrentPosition()Determines the device's current location and gives back a Position object with the data.Geolocation.watchPosition()Returns a long value representing the newly established callback function to be invoked whenever the device location changes.Geolocation.clearWatch()Removes the particular handler previously installed usingwatchPosition().
For information about the API usage, see the MDN Web Docs