@siedlerchr/types-ol-ext
Version:
Type definitions for ol-ext
55 lines (47 loc) • 1.66 kB
TypeScript
import type { Map as _ol_Map_ } from 'ol'
import type { Options as ControlOptions } from 'ol/control/Control'
import ol_control_Control from 'ol/control/Control'
import type { Layer } from 'ol/layer'
import type { Extent } from 'ol/extent'
export interface Options extends ControlOptions {
layers?: Layer | Layer[];
rightLayers?: Layer | Layer[];
className?: string;
position?: number;
orientation?: 'vertical' | 'horizontal';
}
/**
* @classdesc Swipe Control.
*
* @constructor
* @extends {ol_control_Control}
*/
export default class Swipe extends ol_control_Control {
/**
* @param {Object=} Control options.
* @param {ol.layer|Array<ol.layer>} options.layers layers to swipe
* @param {ol.layer|Array<ol.layer>} options.rightLayers layers to swipe on right side
* @param {string} options.className control class name
* @param {number} options.position position property of the swipe [0,1], default 0.5
* @param {string} options.orientation orientation property (vertical|horizontal), default vertical
*/
constructor(options?: Options);
/**
* Set the map instance the control associated with.
* @param {_ol_Map_} map The map instance.
*/
setMap(map: _ol_Map_): void;
/** Add a layer to clip
* @param {layer|Array<layer>} layer to clip
* @param right: add layer in the right part of the map, default left.
*/
addLayer(layer: Layer | Layer[], right: boolean): void;
/** Remove a layer to clip
* @param {layer|Array<layer>} layer to clip
*/
removeLayer(layer: Layer | Layer[]): void;
/** Get visible rectangle
* @returns {Extent}
*/
getRectangle(): Extent;
}