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