-
Name Type Description controlsCollection<Control> | Array<Control> | undefined Controls initially added to the map. If not specified,
defaultsis used.pixelRationumber (defaults to window.devicePixelRatio) The ratio between physical pixels and device-independent pixels (dips) on the device.
interactionsCollection<Interaction> | Array<Interaction> | undefined Interactions that are initially added to the map. If not specified,
defaultsis used.keyboardEventTargetHTMLElement | Document | string | undefined The element to listen to keyboard events on. This determines when the
KeyboardPanandKeyboardZoominteractions trigger. For example, if this option is set todocumentthe keyboard interactions will always trigger. If this option is not specified, the element the library listens to keyboard events on is the map target (i.e. the user-provided div for the map). If this is notdocument, the target element needs to be focused for key events to be emitted, requiring that the target element has atabindexattribute.layersArray<BaseLayer> | Collection<BaseLayer> | LayerGroup | undefined Layers. If this is not defined, a map with no layers will be rendered. Note that layers are rendered in the order supplied, so if you want, for example, a vector layer to appear on top of a tile layer, it must come after the tile layer.
maxTilesLoadingnumber (defaults to 16) Maximum number tiles to load simultaneously.
moveTolerancenumber (defaults to 1) The minimum distance in pixels the cursor must move to be detected as a map move event instead of a click. Increasing this value can make it easier to click on the map.
overlaysCollection<Overlay> | Array<Overlay> | undefined Overlays initially added to the map. By default, no overlays are added.
targetHTMLElement | string | undefined The container for the map, either the element itself or the
idof the element. If not specified at construction time,setTargetmust be called for the map to be rendered. If passed by element, the container can be in a secondary document. For accessibility (focus and keyboard events for map navigation), thetargetelement must have a properly configuredtabindexattribute. If thetargetelement is inside a Shadow DOM, thetabindexatribute must be set on the custom element's host element. Note: CSStransformsupport for the target element is limited toscale.viewView | Promise<ViewOptions> | undefined The map's view. No layer sources will be fetched unless this is specified at construction time or through
setView.Fires:
-
change(BaseEvent) - Generic change event. Triggered when the revision counter is increased. -
change:layerGroup(ObjectEvent) -
change:size(ObjectEvent) -
change:target(ObjectEvent) -
change:view(ObjectEvent) -
click(MapBrowserEvent) - A click with no dragging. A double click will fire two of this. -
dblclick(MapBrowserEvent) - A true double click, with no dragging. -
error(BaseEvent) - Generic error event. Triggered when an error occurs. -
loadend(MapEvent) - Triggered when loading of additional map data has completed. -
loadstart(MapEvent) - Triggered when loading of additional map data (tiles, images, features) starts. -
moveend(MapEvent) - Triggered after the map is moved. -
movestart(MapEvent) - Triggered when the map starts moving. -
pointerdrag(MapBrowserEvent) - Triggered when a pointer is dragged. -
pointermove(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(RenderEvent) - Triggered after layers are composed. When dispatched by the map, the event object will not have a context set. When dispatched by a layer, the event object will have a context set. Only WebGL layers currently dispatch this event. -
postrender(MapEvent) - Triggered after a map frame is rendered. -
precompose(RenderEvent) - Triggered before layers are composed. When dispatched by the map, the event object will not have a context set. When dispatched by a layer, the event object will have a context set. Only WebGL layers currently dispatch this event. -
propertychange(ObjectEvent) - Triggered when a property is changed. -
rendercomplete(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(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.
-
Extends
Observable Properties
| Name | Type | Settable | ObjectEvent type | Description |
|---|---|---|---|---|
layerGroup |
LayerGroup | yes | change:layergroup |
A layer group containing the layers in this map. |
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 |
View | yes | change:view |
The view that controls this map. |
Methods
-
Add the given control to the map.
Name Type Description controlControl Control.
-
Add the given interaction to the map. If you want to add an interaction at another point of the collection use
getInteractions()and the methods available onCollection. 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 interactionInteraction Interaction to add.
-
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 onCollection.Name Type Description layerBaseLayer Layer.
-
Add the given overlay to the map.
Name Type Description overlayOverlay 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
typeproperty.Name Type Description eventBaseEvent | string Event object.
Returns:
falseif anyone called preventDefault on the event object or if any of the listeners returned false.
-
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
layerFilteroption inoptions.Name Type Description pixelPixel Pixel.
callbackfunction Feature callback. The callback will be called with two arguments. The first argument is one
featureorrender featureat the pixel, the second is thelayerof the feature and will be null for unmanaged layers. To stop detection, callback functions can return a truthy value.optionsOptional options.
Name Type Description layerFilterundefined | function Layer filter function. The filter function will receive one argument, the
layer-candidateand it should return a boolean value. Only layers which are visible and for which this function returnstruewill be tested for features. By default, all visible layers will be tested.hitTolerancenumber (defaults to 0) Hit-detection tolerance in css pixels. Pixels inside the radius around the given position will be checked for features.
checkWrappedboolean (defaults to true) Check-Wrapped Will check 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 keystring Key name.
Returns:
Value.
-
Get all layers from all layer groups.
Returns:
Layers.
-
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 pixelPixel 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 eventMouseEvent Event.
Returns:
Coordinate.
-
Returns the map pixel position for a browser event relative to the viewport.
Name Type Description eventUIEvent | Object Event.
Returns:
Pixel.
-
Get all features that intersect a pixel on the viewport.
Name Type Description pixelPixel Pixel.
optionsOptional options.
Name Type Description layerFilterundefined | function Layer filter function. The filter function will receive one argument, the
layer-candidateand it should return a boolean value. Only layers which are visible and for which this function returnstruewill be tested for features. By default, all visible layers will be tested.hitTolerancenumber (defaults to 0) Hit-detection tolerance in css pixels. Pixels inside the radius around the given position will be checked for features.
checkWrappedboolean (defaults to true) Check-Wrapped Will check 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.
-
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.
-
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 idstring | number Overlay identifier.
Returns:
Overlay.
-
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 coordinateCoordinate 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.
-
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.
-
Get the DOM element into which this map is rendered. In contrast to
getTargetthis method always return anElement, ornullif 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.
-
Get the element that serves as the map viewport.
Returns:
Viewport.
-
Detect if features intersect a pixel on the viewport. Layers included in the detection can be configured through the
layerFilteroption.Name Type Description pixelPixel Pixel.
optionsOptional options.
Name Type Description layerFilterundefined | function Layer filter function. The filter function will receive one argument, the
layer-candidateand it should return a boolean value. Only layers which are visible and for which this function returnstruewill be tested for features. By default, all visible layers will be tested.hitTolerancenumber (defaults to 0) Hit-detection tolerance in css pixels. Pixels inside the radius around the given position will be checked for features.
checkWrappedboolean (defaults to true) Check-Wrapped Will check 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?
-
Listen for a certain type of event.
Name Type Description typestring | Array.<string> The event type or array of event types.
listenerfunction 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.
-
Listen once for a certain type of event.
Name Type Description typestring | Array.<string> The event type or array of event types.
listenerfunction 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 controlControl Control.
Returns:
The removed control (or undefined if the control was not found).
-
Remove the given interaction from the map.
Name Type Description interactionInteraction 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 layerBaseLayer Layer.
Returns:
The removed layer (or undefined if the layer was not found).
-
Remove the given overlay from the map.
Name Type Description overlayOverlay Overlay.
Returns:
The removed overlay (or undefined if the overlay was not found).
-
Request a map rendering (at the next animation frame).
-
Requests an immediate render in a synchronous manner.
-
Sets a value.
Name Type Description keystring Key name.
value* Value.
silentboolean | undefined Update without triggering an event.
-
Sets the layergroup of this map.
Name Type Description layerGroupLayerGroup A layer group containing the layers in this map.
-
Clear any existing layers and add layers to the map.
Name Type Description layersArray<BaseLayer> | Collection<BaseLayer> The layers to be added to 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 valuesObject.<string, *> Values.
silentboolean | undefined Update without triggering an event.
-
Set the size of this map.
Name Type Description sizeSize | undefined The size in pixels of the map in the DOM.
-
Set the target element to render this map into. For accessibility (focus and keyboard events for map navigation), the
targetelement must have a properly configuredtabindexattribute. If thetargetelement is inside a Shadow DOM, thetabindexatribute must be set on the custom element's host element.Name Type Description targetHTMLElement | string | undefined The Element or id of the Element that the map is rendered in.
-
Set the view for this map.
Name Type Description viewView | Promise<ViewOptions> The view that controls this map. It is also possible to pass a promise that resolves to options for constructing a view. This alternative allows view properties to be resolved by sources or other components that load view-related metadata.
-
Unlisten for a certain type of event.
Name Type Description typestring | Array.<string> The event type or array of event types.
listenerfunction The listener function.
-
Unsets a property.
Name Type Description keystring Key name.
silentboolean | undefined Unset without triggering an event.
-
Force a recalculation of the map viewport size. This should be called when third-party code changes the size of the map viewport.