UNPKG

rlayers

Version:

React Components for OpenLayers

12 lines 534 B
import { default as OLZoomToExtent } from 'ol/control/ZoomToExtent'; import { default as RControlBase } from './RControlBase'; export default class RZoomToExtent extends RControlBase { constructor(props, context) { super(props, context); this.ol = new OLZoomToExtent(this.toOLProps(props)); } toOLProps(props) { return Object.assign(Object.assign({}, super.toOLProps(props)), { extent: props.extent, label: props.label, tipLabel: props.tipLabel }); } } //# sourceMappingURL=RZoomToExtent.js.map