@gpa-gemstone/react-interactive
Version:
Interactive UI Components for GPA products
12 lines (11 loc) • 380 B
TypeScript
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;