React Three Map - v1.0.9
    Preparing search index...
    useMap: Function = ...

    Hook to access the Mapbox GL JS map instance from within a Canvas.

    The Mapbox GL JS Map instance

    import { useMap } from "@wendylabsinc/react-three-map";

    function MyComponent() {
    const map = useMap();
    // map is typed as mapbox-gl Map
    console.log(map.getZoom());
    return null;
    }