UNPKG

@gpa-gemstone/react-interactive

Version:
13 lines (12 loc) 442 B
import * as React from 'react'; import { Map as LeafletMap, MapOptions, TileLayerOptions, LatLngBoundsExpression } from 'leaflet'; import 'leaflet/dist/leaflet.css'; interface IProps { Map: React.MutableRefObject<LeafletMap | null>; MapOptions?: MapOptions; TileLayerOptions: TileLayerOptions; TileLayerURL: string; Bounds?: LatLngBoundsExpression; } declare const Map: (props: IProps) => JSX.Element; export default Map;