UNPKG

@pansy/react-mapbox-gl

Version:

🌍 基于 Mapbox GL 封装的 React 组件库

5 lines (4 loc) 365 B
import type { Map as MapInstance } from 'mapbox-gl'; import type { LayerProps, LayerType } from './types'; export declare function createLayer<L extends LayerType>(map: MapInstance, id: string, props: LayerProps<L>): void; export declare function updateLayer<L extends LayerType>(map: MapInstance, id: string, props: LayerProps<L>, prevProps: LayerProps<L>): void;