new Map(options)
Name | Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Map options.
|
Fires:
-
change
(module:ol/events/Event~Event) - 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. -
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) -
postrender
(module:ol/MapEvent~MapEvent) - Triggered after a map frame is rendered. -
precompose
(module:ol/render/Event~RenderEvent) -
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. -
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.
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
-
Add the given control to the map.
Name Type Description control
module:ol/control/Control~Control Control.
-
Add the given interaction to the map.
Name Type Description interaction
module:ol/interaction/Interaction~Interaction 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 onmodule:ol/Collection~Collection
.Name Type Description layer
module:ol/layer/Base~BaseLayer Layer.
-
Add the given overlay to the map.
Name Type Description overlay
module:ol/Overlay~Overlay Overlay.
-
forEachFeatureAtPixel(pixel, callback, opt_options){T|undefined} inherited
PluggableMap.js, line 567 -
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 Default 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 0 Hit-detection tolerance in pixels. Pixels inside the radius around the given position will be checked for features. This only works for the canvas renderer and not for WebGL.
Returns:
Callback result, i.e. the return value of last callback execution, or the first truthy callback return value.
-
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
.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 Default 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 0 Hit-detection tolerance in pixels. Pixels inside the radius around the given position will be checked for features. This only works for the canvas renderer and not for WebGL.
Returns:
Callback result, i.e. the return value of last callback execution, or the first truthy callback return value.
-
getControls(){module:ol/Collection~Collection.<module:ol/control/Control~Control>} inherited
PluggableMap.js, line 733 -
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 map view 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 view 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>} inherited
PluggableMap.js, line 591 -
Get all features that intersect a pixel on the viewport.
Name Type Description pixel
module:ol/pixel~Pixel Pixel.
options
Optional options.
Name Type Default 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 0 Hit-detection tolerance in pixels. Pixels inside the radius around the given position will be checked for features. This only works for the canvas renderer and not for WebGL.
Returns:
The detected features ornull
if none were found.
-
getInteractions(){module:ol/Collection~Collection.<module:ol/interaction/Interaction~Interaction>} inherited
PluggableMap.js, line 768 -
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 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>} inherited
PluggableMap.js, line 789 -
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>} inherited
PluggableMap.js, line 743 -
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 map view 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 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
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.
-
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
opt_layerFilter
.Name Type Description pixel
module:ol/pixel~Pixel Pixel.
options
Optional options.
Name Type Default 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 0 Hit-detection tolerance in pixels. Pixels inside the radius around the given position will be checked for features. This only works for the canvas renderer and not for WebGL.
Returns:
Is there a feature at the given pixel?
-
removeControl(control){module:ol/control/Control~Control|undefined} inherited
PluggableMap.js, line 1139 -
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} inherited
PluggableMap.js, line 1150 -
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).
-
Request a map rendering (at the next animation frame).
-
Requests an immediate render in a synchronous manner.
-
Sets the layergroup of this map.
Name Type Description layerGroup
module:ol/layer/Group~LayerGroup A layer group containing the layers in this map.
-
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.
-
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.
-
Set the view for this map.
Name Type Description view
module:ol/View~View The view that controls this map.
-
Force a recalculation of the map viewport size. This should be called when third-party code changes the size of the map viewport.