UNPKG

@pansy/react-mapbox-gl

Version:

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

9 lines (6 loc) 219 B
import { createContext } from 'react'; import type { MapboxMap } from './types'; export interface MapContextValue { map: MapboxMap; } export const MapContext = createContext<MapContextValue>({} as MapContextValue);