new PluggableMap(options)
Name | Type | Description | |||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Map options.
|
Fires:
-
change
(module:ol/events/Event~BaseEvent) - Generic change event. Triggered when the revision counter is increased. -
change:layerGroup
(module:ol/Object.ObjectEvent) -
change:size
(module:ol/Object.ObjectEvent) -
change:target
(module:ol/Object.ObjectEvent) -
change:view
(module:ol/Object.ObjectEvent) -
click
(module:ol/MapBrowserEvent~MapBrowserEvent) - A click with no dragging. A double click will fire two of this. -
dblclick
(module:ol/MapBrowserEvent~MapBrowserEvent) - A true double click, with no dragging. -
error
(module:ol/events/Event~BaseEvent) - Generic error event. Triggered when an error occurs. -
moveend
(module:ol/MapEvent~MapEvent) - Triggered after the map is moved. -
movestart
(module:ol/MapEvent~MapEvent) - Triggered when the map starts moving. -
pointerdrag
(module:ol/MapBrowserEvent~MapBrowserEvent) - Triggered when a pointer is dragged. -
pointermove
(module:ol/MapBrowserEvent~MapBrowserEvent) - Triggered when a pointer is moved. Note that on touch devices this is triggered when the map is panned, so is not the same as mousemove. -
postcompose
(module:ol/render/Event~RenderEvent) - Triggered after all layers are rendered. The event object will not have a context set. -
postrender
(module:ol/MapEvent~MapEvent) - Triggered after a map frame is rendered. -
precompose
(module:ol/render/Event~RenderEvent) - Triggered before layers are rendered. The event object will not have a context set. -
propertychange
(module:ol/Object.ObjectEvent) - Triggered when a property is changed. -
rendercomplete
(module:ol/render/Event~RenderEvent) - Triggered when rendering is complete, i.e. all sources and tiles have finished loading for the current viewport, and all tiles are faded in. The event object will not have a context set. -
singleclick
(module:ol/MapBrowserEvent~MapBrowserEvent) - A true single click with no dragging and no double click. Note that this event is delayed by 250 ms to ensure that it is not a double click.
Subclasses
Extends
Observable Properties
Name | Type | Settable | ol/Object.ObjectEvent type | Description |
---|---|---|---|---|
layerGroup |
module:ol/layer/Group~LayerGroup | yes | change:layergroup |
A layer group containing the layers in this map. |
size |
module:ol/size~Size | undefined | yes | change:size |
The size in pixels of the map in the DOM. |
target |
HTMLElement | string | undefined | yes | change:target |
The Element or id of the Element that the map is rendered in. |
view |
module:ol/View~View | yes | change:view |
The view that controls this map. |
Methods
-
addControl(control)
PluggableMap.js, line 466 -
Add the given control to the map.
Name Type Description control
module:ol/control/Control~Control Control.
-
addInteraction(interaction)
PluggableMap.js, line 479 -
Add the given interaction to the map. If you want to add an interaction at another point of the collection use
getInteraction()
and the methods available onmodule:ol/Collection~Collection
. This can be used to stop the event propagation from the handleEvent function. The interactions get to handle the events in the reverse order of this collection.Name Type Description interaction
module:ol/interaction/Interaction~Interaction Interaction to add.
-
addLayer(layer)
PluggableMap.js, line 490 -
Adds the given layer to the top of this map. If you want to add a layer elsewhere in the stack, use
getLayers()
and the methods available onmodule:ol/Collection~Collection
.Name Type Description layer
module:ol/layer/Base~BaseLayer Layer.
-
addOverlay(overlay)
PluggableMap.js, line 500 -
Add the given overlay to the map.
Name Type Description overlay
module:ol/Overlay~Overlay Overlay.
-
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 | module:ol/events/Event~BaseEvent | string Event object.
Returns:
false
if anyone called preventDefault on the event object or if any of the listeners returned false.
-
forEachFeatureAtPixel(pixel, callback, opt_options){T|undefined}
PluggableMap.js, line 552 -
Detect features that intersect a pixel on the viewport, and execute a callback with each intersecting feature. Layers included in the detection can be configured through the
layerFilter
option inopt_options
.Name Type Description pixel
module:ol/pixel~Pixel Pixel.
callback
function Feature callback. The callback will be called with two arguments. The first argument is one
feature
orrender feature
at the pixel, the second is thelayer
of the feature and will be null for unmanaged layers. To stop detection, callback functions can return a truthy value.options
Optional options.
Name Type Description layerFilter
undefined | function Layer filter function. The filter function will receive one argument, the
layer-candidate
and it should return a boolean value. Only layers which are visible and for which this function returnstrue
will be tested for features. By default, all visible layers will be tested.hitTolerance
number (defaults to 0) Hit-detection tolerance in pixels. Pixels inside the radius around the given position will be checked for features.
checkWrapped
boolean (defaults to true) Check-Wrapped Will check for for wrapped geometries inside the range of +/- 1 world width. Works only if a projection is used that can be wrapped.
Returns:
Callback result, i.e. the return value of last callback execution, or the first truthy callback return value.
-
forEachLayerAtPixel(pixel, callback, opt_options){T|undefined}
PluggableMap.js, line 605 -
Detect layers that have a color value at a pixel on the viewport, and execute a callback with each matching layer. Layers included in the detection can be configured through
opt_layerFilter
.Note: this may give false positives unless the map layers have had different
className
properties assigned to them.Name Type Description pixel
module:ol/pixel~Pixel Pixel.
callback
function Layer callback. This callback will receive two arguments: first is the
layer
, second argument is an array representing [R, G, B, A] pixel values (0 - 255) and will benull
for layer types that do not currently support this argument. To stop detection, callback functions can return a truthy value.options
Configuration options.
Name Type Description layerFilter
undefined | function Layer filter function. The filter function will receive one argument, the
layer-candidate
and it should return a boolean value. Only layers which are visible and for which this function returnstrue
will be tested for features. By default, all visible layers will be tested.hitTolerance
number (defaults to 0) Hit-detection tolerance in pixels. Pixels inside the radius around the given position will be checked for features.
checkWrapped
boolean (defaults to true) Check-Wrapped Will check for for wrapped geometries inside the range of +/- 1 world width. Works only if a projection is used that can be wrapped.
Returns:
Callback result, i.e. the return value of last callback execution, or the first truthy callback return value.
-
Gets a value.
Name Type Description key
string Key name.
Returns:
Value.
-
getControls(){module:ol/Collection~Collection.<module:ol/control/Control~Control>}
PluggableMap.js, line 736 -
Get the map controls. Modifying this collection changes the controls associated with the map.
Returns:
Controls.
-
Get the coordinate for a given pixel. This returns a coordinate in the user projection.
Name Type Description pixel
module:ol/pixel~Pixel Pixel position in the map viewport.
Returns:
The coordinate for the pixel position.
-
Returns the coordinate in user projection for a browser event.
Name Type Description event
Event Event.
Returns:
Coordinate.
-
Returns the map pixel position for a browser event relative to the viewport.
Name Type Description event
Event | TouchEvent Event.
Returns:
Pixel.
-
getFeaturesAtPixel(pixel, opt_options){Array.<module:ol/Feature~FeatureLike>}
PluggableMap.js, line 576 -
Get all features that intersect a pixel on the viewport.
Name Type Description pixel
module:ol/pixel~Pixel Pixel.
options
Optional options.
Name Type Description layerFilter
undefined | function Layer filter function. The filter function will receive one argument, the
layer-candidate
and it should return a boolean value. Only layers which are visible and for which this function returnstrue
will be tested for features. By default, all visible layers will be tested.hitTolerance
number (defaults to 0) Hit-detection tolerance in pixels. Pixels inside the radius around the given position will be checked for features.
checkWrapped
boolean (defaults to true) Check-Wrapped Will check for for wrapped geometries inside the range of +/- 1 world width. Works only if a projection is used that can be wrapped.
Returns:
The detected features or an empty array if none were found.
-
getInteractions(){module:ol/Collection~Collection.<module:ol/interaction/Interaction~Interaction>}
PluggableMap.js, line 771 -
Get the map interactions. Modifying this collection changes the interactions associated with the map.
Interactions are used for e.g. pan, zoom and rotate.
Returns:
Interactions.
-
Get a list of object property names.
Returns:
List of property names.
-
Get the layergroup associated with this map.
Returns:
A layer group containing the layers in this map.
-
getLayers(){module:ol/Collection~Collection.<module:ol/layer/Base~BaseLayer>}
PluggableMap.js, line 792 -
Get the collection of layers associated with this map.
Returns:
Layers.
-
Get an overlay by its identifier (the value returned by overlay.getId()). Note that the index treats string and numeric identifiers as the same. So
map.getOverlayById(2)
will return an overlay with id'2'
or2
.Name Type Description id
string | number Overlay identifier.
Returns:
Overlay.
-
getOverlays(){module:ol/Collection~Collection.<module:ol/Overlay~Overlay>}
PluggableMap.js, line 746 -
Get the map overlays. Modifying this collection changes the overlays associated with the map.
Returns:
Overlays.
-
Get the pixel for a coordinate. This takes a coordinate in the user projection and returns the corresponding pixel.
Name Type Description coordinate
module:ol/coordinate~Coordinate A map coordinate.
Returns:
A pixel position in the map viewport.
-
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.
-
Get the size of this map.
Returns:
The size in pixels of the map in the DOM.
-
getTarget(){HTMLElement|string|undefined}
PluggableMap.js, line 684 -
Get the target in which this map is rendered. Note that this returns what is entered as an option or in setTarget: if that was an element, it returns an element; if a string, it returns that.
Returns:
The Element or id of the Element that the map is rendered in.
-
getTargetElement(){HTMLElement}
PluggableMap.js, line 695 -
Get the DOM element into which this map is rendered. In contrast to
getTarget
this method always return anElement
, ornull
if the map has no target.Returns:
The element that the map is rendered in.
-
Get the view associated with this map. A view manages properties such as center and resolution.
Returns:
The view that controls this map.
-
getViewport(){HTMLElement}
PluggableMap.js, line 877 -
Get the element that serves as the map viewport.
Returns:
Viewport.
-
hasFeatureAtPixel(pixel, opt_options){boolean}
PluggableMap.js, line 624 -
Detect if features intersect a pixel on the viewport. Layers included in the detection can be configured through
opt_layerFilter
.Name Type Description pixel
module:ol/pixel~Pixel Pixel.
options
Optional options.
Name Type Description layerFilter
undefined | function Layer filter function. The filter function will receive one argument, the
layer-candidate
and it should return a boolean value. Only layers which are visible and for which this function returnstrue
will be tested for features. By default, all visible layers will be tested.hitTolerance
number (defaults to 0) Hit-detection tolerance in pixels. Pixels inside the radius around the given position will be checked for features.
checkWrapped
boolean (defaults to true) Check-Wrapped Will check for for wrapped geometries inside the range of +/- 1 world width. Works only if a projection is used that can be wrapped.
Returns:
Is there a feature at the given pixel?
-
on(type, listener){module:ol/events~EventsKey|Array.<module:ol/events~EventsKey>} inherited
Observable.js, line 60 -
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.
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){module:ol/events~EventsKey|Array.<module:ol/events~EventsKey>} inherited
Observable.js, line 82 -
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.
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.
-
Remove the given control from the map.
Name Type Description control
module:ol/control/Control~Control Control.
Returns:
The removed control (or undefined if the control was not found).
-
removeInteraction(interaction){module:ol/interaction/Interaction~Interaction|undefined}
PluggableMap.js, line 1230 -
Remove the given interaction from the map.
Name Type Description interaction
module:ol/interaction/Interaction~Interaction Interaction to remove.
Returns:
The removed interaction (or undefined if the interaction was not found).
-
Removes the given layer from the map.
Name Type Description layer
module:ol/layer/Base~BaseLayer Layer.
Returns:
The removed layer (or undefined if the layer was not found).
-
Remove the given overlay from the map.
Name Type Description overlay
module:ol/Overlay~Overlay Overlay.
Returns:
The removed overlay (or undefined if the overlay was not found).
-
render()
PluggableMap.js, line 1206 -
Request a map rendering (at the next animation frame).
-
renderSync()
PluggableMap.js, line 1182 -
Requests an immediate render in a synchronous manner.
-
Sets a value.
Name Type Description key
string Key name.
value
* Value.
silent
boolean Update without triggering an event.
-
setLayerGroup(layerGroup)
PluggableMap.js, line 1334 -
Sets the layergroup of this map.
Name Type Description layerGroup
module:ol/layer/Group~LayerGroup A layer group containing the layers in this 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.
-
setSize(size)
PluggableMap.js, line 1344 -
Set the size of this map.
Name Type Description size
module:ol/size~Size | undefined The size in pixels of the map in the DOM.
-
setTarget(target)
PluggableMap.js, line 1355 -
Set the target element to render this map into.
Name Type Description target
HTMLElement | string | undefined The Element or id of the Element that the map is rendered in.
-
setView(view)
PluggableMap.js, line 1365 -
Set the view for this map.
Name Type Description view
module:ol/View~View The view that controls this map.
-
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.
-
Unsets a property.
Name Type Description key
string Key name.
silent
boolean Unset without triggering an event.
-
updateSize()
PluggableMap.js, line 1374 -
Force a recalculation of the map viewport size. This should be called when third-party code changes the size of the map viewport.