UNPKG

@pansy/react-mapbox-gl

Version:

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

13 lines (9 loc) 279 B
import { useContext } from 'react'; import { MapContext } from '../components/Map/context'; export const useMap = () => { const context = useContext(MapContext); if (!context) { throw new Error('The useMap must be used in the Map container'); } return context; };