ol. ol.Geolocation

new Geolocation

Stability: experimental

Helper class for providing HTML5 Geolocation capabilities. The Geolocation API is used to locate a user's position.

Example:

var geolocation = new ol.Geolocation();
// take the projection to use from the map's view
geolocation.bindTo('projection', map.getView());
// listen to changes in position
geolocation.on('change:position', function(evt) {
  window.console.log(geolocation.getPosition());
});
Parameters:
Name Type Argument Description
options olx.GeolocationOptions <optional>

Options.

Source:
  • geolocation.js, line 70

Extends

Observable Properties

Name Type Settable Event Description
accuracy number no change:accuracy the accuracy of the position measurement in meters
altitude number no change:altitude the altitude of the position in meters above mean sea level
altitudeAccuracy number no change:altitudeaccuracy the accuracy of the altitude measurement in meters
heading number no change:heading the heading of the device in radians from north
position ol.Coordinate no change:position the current position of the device reported in the current projection
projection ol.proj.Projection no change:projection the projection to report the position in
speed number no change:speed the instantaneous speed of the device in meters per second
tracking number yes change:tracking track the device's position.
trackingOptions GeolocationPositionOptions yes change:trackingoptions PositionOptions as defined by the HTML5 Geolocation spec at http://dev.w3.org/geo/api/spec-source.html

Methods

bindTo

Stability: experimental

The bindTo method allows you to set up a two-way binding between a source and target object. The method returns an ol.ObjectAccessor with a transform method that lets you transform values on the way from the source to the target and on the way back.

For example, if you had two map views (sourceView and targetView) and you wanted the target view to have double the resolution of the source view, you could transform the resolution on the way to and from the target with the following:

sourceView.bindTo('resolution', targetView)
  .transform(
    function(sourceResolution) {
      // from sourceView.resolution to targetView.resolution
      return 2 * sourceResolution;
    },
    function(targetResolution) {
      // from targetView.resolution to sourceView.resolution
      return targetResolution / 2;
    }
  );
Parameters:
Name Type Argument Description
key string

Key name.

target ol.Object

Target.

targetKey string <optional>

Target key.

Inherited From:
Source:
  • object.js, line 232
Returns:
Type
ol.ObjectAccessor

dispatchChangeEvent

Stability: experimental
Inherited From:
Source:
  • observable.js, line 35

get

Stability: experimental

Gets a value.

Parameters:
Name Type Description
key string

Key name.

Inherited From:
Source:
  • object.js, line 289
Returns:

Value.

Type
*

getAccuracy

Stability: experimental

Get the accuracy of the position in meters.

Source:
  • geolocation.js, line 200
Returns:

Position accuracy in meters.

Type
number | undefined

getAltitude

Stability: experimental

Get the altitude associated with the position.

Source:
  • geolocation.js, line 215
Returns:

The altitude in meters above the mean sea level.

Type
number | undefined

getAltitudeAccuracy

Stability: experimental

Get the altitude accuracy of the position.

Source:
  • geolocation.js, line 230
Returns:

Altitude accuracy in meters.

Type
number | undefined

getHeading

Stability: experimental

Get the heading as radians clockwise from North.

Source:
  • geolocation.js, line 245
Returns:

Heading.

Type
number | undefined

getPosition

Stability: experimental

Get the position of the device.

Source:
  • geolocation.js, line 260
Returns:

position.

Type
ol.Coordinate | undefined

getProjection

Stability: experimental

Get the projection associated with the position.

Source:
  • geolocation.js, line 275
Returns:

projection.

Type
ol.proj.Projection | undefined

getProperties

Stability: experimental

Get an object of all property names and values.

Inherited From:
Source:
  • object.js, line 348
Returns:

Object.

Type
Object.<string, *>

getSpeed

Stability: experimental

Get the speed in meters per second.

Source:
  • geolocation.js, line 290
Returns:

Speed.

Type
number | undefined

getTracking

Stability: experimental

Are we tracking the user's position?

Source:
  • geolocation.js, line 305
Returns:

tracking.

Type
boolean

getTrackingOptions

Stability: experimental

Get the tracking options.

Source:
  • geolocation.js, line 322
See:
Returns:

HTML 5 Gelocation tracking options.

Type
GeolocationPositionOptions | undefined

notify

Stability: experimental

Notify all observers of a change on this property. This notifies both objects that are bound to the object's property as well as the object that it is bound to.

Parameters:
Name Type Description
key string

Key name.

Inherited From:
Source:
  • object.js, line 368

on

Stability: experimental

Listen for a certain type of event.

Parameters:
Name Type Argument Description
type string | Array.<string>

The event type or array of event types.

listener function

The listener function.

this Object <optional>

The object to use as this in listener.

Inherited From:
Source:
  • observable.js, line 58
Returns:

Unique key for the listener.

Type
goog.events.Key

once

Stability: experimental

Listen once for a certain type of event.

Parameters:
Name Type Argument Description
type string | Array.<string>

The event type or array of event types.

listener function

The listener function.

this Object <optional>

The object to use as this in listener.

Inherited From:
Source:
  • observable.js, line 71
Returns:

Unique key for the listener.

Type
goog.events.Key

set

Stability: experimental

Sets a value.

Parameters:
Name Type Description
key string

Key name.

value *

Value.

Inherited From:
Source:
  • object.js, line 399

setProjection

Stability: experimental

Set the projection to use for transforming the coordinates.

Parameters:
Name Type Description
projection ol.proj.Projection

Projection.

Source:
  • geolocation.js, line 337

setTracking

Stability: experimental

Enable/disable tracking.

Parameters:
Name Type Description
tracking boolean

Enable or disable tracking.

Source:
  • geolocation.js, line 351

setTrackingOptions

Stability: experimental

Set the tracking options.

Parameters:
Name Type Description
options GeolocationPositionOptions

HTML 5 Geolocation tracking options.

Source:
  • geolocation.js, line 367
See:

setValues

Stability: experimental

Sets a collection of key-value pairs.

Parameters:
Name Type Description
values Object.<string, *>

Values.

Inherited From:
Source:
  • object.js, line 428

un

Stability: experimental

Unlisten for a certain type of event.

Parameters:
Name Type Argument Description
type string | Array.<string>

The event type or array of event types.

listener function

The listener function.

this Object <optional>

The object to use as this in listener.

Inherited From:
Source:
  • observable.js, line 83

unbind

Stability: experimental

Removes a binding. Unbinding will set the unbound property to the current value. The object will not be notified, as the value has not changed.

Parameters:
Name Type Description
key string

Key name.

Inherited From:
Source:
  • object.js, line 442

unbindAll

Stability: experimental

Removes all bindings.

Inherited From:
Source:
  • object.js, line 466

unByKey

Stability: experimental

Removes an event listener using the key returned by on() or once().

Parameters:
Name Type Description
key goog.events.Key

Key.

Inherited From:
Source:
  • observable.js, line 93