new ol.Overlay(options)
Name | Type | Description | ||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Overlay options.
|
Fires:
-
change
(ol.events.Event) - Generic change event. Triggered when the revision counter is increased. -
change:element
(ol.Object.Event) -
change:map
(ol.Object.Event) -
change:offset
(ol.Object.Event) -
change:position
(ol.Object.Event) -
change:positioning
(ol.Object.Event) -
propertychange
(ol.Object.Event) - Triggered when a property is changed.
Extends
Observable Properties
Name | Type | Settable | ol.Object.Event type | Description |
---|---|---|---|---|
element |
Element | undefined | yes | change:element |
The Element containing the overlay. |
map |
ol.PluggableMap | undefined | yes | change:map |
The map that the overlay is part of. |
offset |
Array.<number> | yes | change:offset |
The offset. |
position |
ol.Coordinate | undefined | yes | change:position |
The spatial point that the overlay is anchored at. |
positioning |
ol.OverlayPositioning | yes | change:positioning |
How the overlay is positioned relative to its point on the map. |
Methods
-
Increases the revision counter and dispatches a 'change' event.
-
Dispatches an event and calls all listeners listening for events of this type. The event parameter can either be a string or an Object with a
type
property.Name Type Description event
Object | ol.events.Event | string Event object.
-
Gets a value.
Name Type Description key
string Key name.
Returns:
Value.
-
getElement(){Element|undefined}
src/ol/overlay.js, line 158 -
Get the DOM element of this overlay.
Returns:
The Element containing the overlay.
-
getId(){number|string|undefined}
src/ol/overlay.js, line 169 -
Get the overlay identifier which is set on constructor.
Returns:
Id.
-
Get a list of object property names.
Returns:
List of property names.
-
Get the map associated with this overlay.
Returns:
The map that the overlay is part of.
-
getOffset(){Array.<number>}
src/ol/overlay.js, line 192 -
Get the offset of this overlay.
Returns:
The offset.
-
Get the current position of this overlay.
Returns:
The spatial point that the overlay is anchored at.
-
Get the current positioning of this overlay.
Returns:
How the overlay is positioned relative to its point on the map.
-
Get an object of all property names and values.
Returns:
Object.
-
Get the version number for this object. Each time the object is modified, its version number will be incremented.
Returns:
Revision.
-
on(type, listener, opt_this){ol.EventsKey|Array.<ol.EventsKey>} inherited
src/ol/observable.js, line 99 -
Listen for a certain type of event.
Name Type Description type
string | Array.<string> The event type or array of event types.
listener
function The listener function.
this
Object The object to use as
this
inlistener
.Returns:
Unique key for the listener. If called with an array of event types as the first argument, the return will be an array of keys.
-
once(type, listener, opt_this){ol.EventsKey|Array.<ol.EventsKey>} inherited
src/ol/observable.js, line 124 -
Listen once for a certain type of event.
Name Type Description type
string | Array.<string> The event type or array of event types.
listener
function The listener function.
this
Object The object to use as
this
inlistener
.Returns:
Unique key for the listener. If called with an array of event types as the first argument, the return will be an array of keys.
-
Sets a value.
Name Type Description key
string Key name.
value
* Value.
silent
boolean Update without triggering an event.
-
setElement(element)
src/ol/overlay.js, line 302 -
Set the DOM element to be associated with this overlay.
Name Type Description element
Element | undefined The Element containing the overlay.
-
setMap(map)
src/ol/overlay.js, line 313 -
Set the map to be associated with this overlay.
Name Type Description map
ol.PluggableMap | undefined The map that the overlay is part of.
-
setOffset(offset)
src/ol/overlay.js, line 324 -
Set the offset for this overlay.
Name Type Description offset
Array.<number> Offset.
-
setPosition(position)
src/ol/overlay.js, line 337 -
Set the position for this overlay. If the position is
undefined
the overlay is hidden.Name Type Description position
ol.Coordinate | undefined The spatial point that the overlay is anchored at.
-
setPositioning(positioning)
src/ol/overlay.js, line 428 -
Set the positioning for this overlay.
Name Type Description positioning
ol.OverlayPositioning how the overlay is positioned relative to its point on the map.
-
Sets a collection of key-value pairs. Note that this changes any existing properties and adds new ones (it does not remove any existing properties).
Name Type Description values
Object.<string, *> Values.
silent
boolean Update without triggering an event.
-
Unlisten for a certain type of event.
Name Type Description type
string | Array.<string> The event type or array of event types.
listener
function The listener function.
this
Object The object which was used as
this
by thelistener
. -
Unsets a property.
Name Type Description key
string Key name.
silent
boolean Unset without triggering an event.