Is it possible to use react-leaflet as a base map for deck.gl overlay? I am experimenting with the earthquake example and when I try to use leaflet-react instead of {StaticMap} from 'react-map-gl' it doesn't seem to work. Any ideas?
import React, {Component, Fragment} from 'react';
import {MAP} from 'react-leaflet';
import DeckGL from '@deck.gl/react';
<DeckGL>
<MAP
center = {center}
/>
</DeckG>
but If I use import {MAP} from 'react-map-gl';
it works cool.
Any thought? Any ideas?