Making the condition for adding to selection configurable

This commit is contained in:
ahocevar
2013-09-27 11:45:15 +02:00
parent c556ddd593
commit f8e891ff15
2 changed files with 13 additions and 3 deletions

View File

@@ -311,9 +311,12 @@
/**
* @typedef {Object} ol.interaction.SelectOptions
* @property {ol.interaction.ConditionType|undefined} addCondition A conditional
* modifier (e.g. shift key) that determines if the selection is added to
* the current selection. Default is when holding the shift key only.
* @property {ol.interaction.ConditionType|undefined} condition A conditional
* modifier (i.e. Shift key) that determines if the interaction is active
* or not, default is on mouse click only.
* modifier (e.g. shift key) that determines if the interaction is active
* (i.e. selection occurs) or not. Default is on mouse click only.
* @property {undefined|function(ol.layer.Layer):boolean} layerFilter Filter
* function to restrict selection to a subset of layers.
*/