import Map from '../map/Map'; import Control, { ControlOptionsType } from './Control'; /** * @classdesc * A zoom control with buttons to zoomin/zoomout and a slider indicator for the zoom level. * @category control * @extends control.Control * @memberOf control * @example * var zoomControl = new Zoom({ * position : 'top-left', * slider : true, * zoomLevel : false * }).addTo(map); */ declare class Zoom extends Control { /** * method to build DOM of the control * @param {Map} map map to build on * @return {HTMLDOMElement} */ buildOn(map: Map): HTMLElement; onRemove(): void; } export default Zoom; export type ZoomOptionsTypeSpec = { zoomLevel?: boolean; seamless?: boolean; }; export type ZoomOptionsType = ControlOptionsType & ZoomOptionsTypeSpec; //# sourceMappingURL=Control.Zoom.d.ts.map