ole
Version:
OpenLayers Editor
18 lines (17 loc) • 487 B
TypeScript
export default SelectModify;
/**
* Select features for modification by a Modify interaction.
*
* Default behavior:
* - Double click on the feature to select one feature.
* - Click on the map to deselect all features.
*/
declare class SelectModify extends Select {
/**
* @param {Options=} options Options.
* @ignore
*/
constructor(options?: Options | undefined);
handleEvent(mapBrowserEvent: any): boolean;
}
import Select from 'ol/interaction/Select';