Open rmruss2022 opened 3 months ago
How can we enable draw controls on top of deckgl layers? Draw selection is currently under my GridCellLayer in DeckGL. I'm using mapbox overlay with deckgl. How can I change this ordering?
function DeckGLOverlay(props: any) { const overlay = useControl<MapboxOverlay>(() => new MapboxOverlay(props)); overlay.setProps(props); return null; } <Map reuseMaps mapboxAccessToken={} mapStyle={MAP_STYLE} ref={map} initialViewState={viewState} viewState={viewState} onMove={handleViewStateChange} > <DeckGLOverlay layers={layers} interleaved={true} /> </Map>
How can we enable draw controls on top of deckgl layers? Draw selection is currently under my GridCellLayer in DeckGL. I'm using mapbox overlay with deckgl. How can I change this ordering?