import Collection from "ol/Collection"; import Control from "ol/control/Control"; import { Extent } from "ol/extent"; import * as React from "react"; interface PropTypes { controls?: Collection | Control[]; extent?: Extent; geoJSON?: string; lat?: string | number; lon?: string | number; latd?: string | number; latm?: string | number; latns?: string | number; longd?: string | number; longew?: string | number; longm?: string | number; showCoordinates?: boolean; zoom?: number; } export declare class MapView extends React.PureComponent { private map; private mapRef; constructor(props: any); componentDidMount(): void; componentDidUpdate(): void; render(): JSX.Element; private coordinates; private getExtraLayers; private createMap; } export {};