SelectionController
The Selection controller allows you to listen for changes to the selection on the map.
Extended by
Methods
getSelection()
getSelection():
Promise
<EntityNode
[]>
Gets the current selection as a list of entity identifiers.
Returns
Promise
<EntityNode
[]>
Example
selectFeature()
selectFeature(
params
:FeatureSelection
):Promise
<void
>
Selects a feature on a layer. This will show the feature's popup, modal or sidebar (if configured) and highlight the feature.
Parameters
params
Returns
Promise
<void
>
Example
clearSelection()
clearSelection(
params
?: {features
:boolean
;elements
:boolean
; }):Promise
<void
>
Clears the current selection. This clears the selection of
Parameters
params
?
object
The parameters to clear the selection. If this is not provided, both features and elements will be cleared.
params.features
?
boolean
Whether to clear the features from the selection.
params.elements
?
boolean
Whether to clear the elements from the selection.
Returns
Promise
<void
>
Example
Default
Events
onSelectionChange()
onSelectionChange(
params
: {handler
: (change
: {selection
:EntityNode
[]; }) =>void
; }):VoidFunction
Adds a listener for when the selection changes.
Parameters
params
object
params.handler
Returns
VoidFunction
A function to unsubscribe from the listener
Example
Last updated