ol-graticule-control
Version:
graticule control of openlayers 5
14 lines (13 loc) • 370 B
TypeScript
import Control from 'ol/control/Control';
import Graticule from 'ol/Graticule';
interface GraticuleControlParams {
graticule: Graticule;
icon?: string;
}
export declare class GraticuleControl extends Control {
graticule: Graticule;
button: HTMLButtonElement;
constructor(opts: GraticuleControlParams);
handleToggleGraticule(): void;
}
export {};