new Select(opt_options)
| Name | Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Options.
|
|||||||||||||||||||||||||||||||||||||||||||||||||
Fires:
-
SelectEvent -
change(module:ol/events/Event~Event) - Generic change event. Triggered when the revision counter is increased. -
change:active(module:ol/Object.ObjectEvent) -
propertychange(module:ol/Object.ObjectEvent) - Triggered when a property is changed.
Extends
Observable Properties
| Name | Type | Settable | ol/Object.ObjectEvent type | Description |
|---|---|---|---|---|
active |
boolean | yes | change:active |
|
Methods
-
Increases the revision counter and dispatches a 'change' event.
-
Gets a value.
Name Type Description keystring Key name.
Returns:
Value.
-
Return whether the interaction is currently active.
Returns:
trueif the interaction is active,falseotherwise.
-
getFeatures(){module:ol/Collection~Collection.<module:ol/Feature~Feature>}
interaction/Select.js, line 278 -
Get the selected features.
Returns:
Features collection.
-
getHitTolerance(){number}
interaction/Select.js, line 287 -
Returns the Hit-detection tolerance.
Returns:
Hit tolerance in pixels.
-
Get a list of object property names.
Returns:
List of property names.
-
Returns the associated
vectorlayerof the (last) selected feature. Note that this will not work with any programmatic method like pushing features tocollection.Name Type Description featuremodule:ol/Feature~FeatureLike Feature
Returns:
Layer.
-
Get the map associated with this interaction.
Returns:
Map.
-
Get the overlay layer that this interaction renders selected features to.
Returns:
Overlay layer.
-
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.
-
Handles the
map browser event.Name Type Description mapBrowserEventmodule:ol/MapBrowserEvent~MapBrowserEvent Map browser event.
Returns:
falseto stop event propagation.
-
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 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.
-
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 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.
-
Sets a value.
Name Type Description keystring Key name.
value* Value.
silentboolean Update without triggering an event.
-
Activate or deactivate the interaction.
Name Type Description activeboolean Active.
-
setHitTolerance(hitTolerance)
interaction/Select.js, line 322 -
Hit-detection tolerance. Pixels inside the radius around the given position will be checked for features. This only works for the canvas renderer and not for WebGL.
Name Type Description hitTolerancenumber Hit tolerance in pixels.
-
setMap(map)
interaction/Select.js, line 333 -
Remove the interaction from its current map, if any, and attach it to a new map, if any. Pass
nullto just remove the interaction from the current map.Name Type Description mapmodule:ol/PluggableMap~PluggableMap 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 Update without triggering an event.
-
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 Unset without triggering an event.
OpenLayers