UNPKG

@wayz/react-gl

Version:

React Component for DeckGL, Base on AMap, Mapbox GL

10 lines (9 loc) 275 B
import { CSSProperties, FC } from 'react'; import './index.css'; export interface NavigationControlProps { style?: CSSProperties; className?: string; show?: boolean; } declare const NavigationControl: FC<NavigationControlProps>; export default NavigationControl;