diff --git a/config/jsdoc/api/index.md b/config/jsdoc/api/index.md index 92cfa13eda..e9a2bffff5 100644 --- a/config/jsdoc/api/index.md +++ b/config/jsdoc/api/index.md @@ -29,11 +29,10 @@ Interactions for [vector features](ol.Feature.html)
[Vector sources](ol.source.Vector.html) for [ol.layer.Vector](ol.layer.Vector.html)
[Formats](ol.format.Feature.html) for reading/writing vector data
[ol.format.WMSCapabilities](ol.format.WMSCapabilities.html) -Projections2-way bindingsOther components +ProjectionsObservable objectsOther components

All coordinates and extents need to be provided in view projection (default: EPSG:3857). To transform, use [ol.proj.transform()](ol.proj.html#transform) and [ol.proj.transformExtent()](ol.proj.html#transformExtent).

[ol.proj](ol.proj.html) -

[Objects](ol.Object.html) can be kept in sync using the [bindTo()](ol.Object.html#bindTo) method.

-

A [DOM Input](ol.dom.Input.html) class is available to bind Object properties to HTML Input elements.

+

Changes to all [ol.Objects](ol.Object.html) can observed by calling the [object.on('propertychange')](ol.Object.html#on) method. Listeners receive an [ol.ObjectEvent](ol.ObjectEvent.html) with information on the changed property and old value.

[ol.DeviceOrientation](ol.DeviceOrientation.html)
[ol.Geolocation](ol.Geolocation.html)
[ol.Overlay](ol.Overlay.html)
diff --git a/src/ol/object.js b/src/ol/object.js index 9d64797c0f..9eaf670b2a 100644 --- a/src/ol/object.js +++ b/src/ol/object.js @@ -1,9 +1,3 @@ -/** - * An implementation of Google Maps' MVCObject. - * @see https://developers.google.com/maps/articles/mvcfun - * @see https://developers.google.com/maps/documentation/javascript/reference - */ - goog.provide('ol.Object'); goog.provide('ol.ObjectEvent'); goog.provide('ol.ObjectEventType');