UNPKG

@gpa-gemstone/react-interactive

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