You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to add a control panel over a deckgl map.
even if im only adding the import line:
import ControlPanel, {
Button,
Checkbox,
Multibox,
Select,
Text,
Color,
Range,
Interval,
Custom,
} from 'react-control-panel';
My deck gl map almost disappears entirely, and i get a page of 5% the deckgl map, 95% white screen.
Removing the import fixes that.
I wonder if im doing anything wrong or misses something.
Thanks!
The text was updated successfully, but these errors were encountered:
I forked the base of this from the base control-panel project and looking at their code it seems that they used a lot of generic class names like .container. So it's possible that either DeckGL or your own code has a class like .container or .control-panel that is getting its styles destroyed by react control panel's when it's imported in.
Could you check and see if that's the case? If so, I can look into tagging a release with more specific class names for some of the internals. I think it would be a good change to have in general tbh.
I'm trying to add a control panel over a deckgl map.
even if im only adding the import line:
import ControlPanel, {
Button,
Checkbox,
Multibox,
Select,
Text,
Color,
Range,
Interval,
Custom,
} from 'react-control-panel';
My deck gl map almost disappears entirely, and i get a page of 5% the deckgl map, 95% white screen.
Removing the import fixes that.
I wonder if im doing anything wrong or misses something.
Thanks!
The text was updated successfully, but these errors were encountered: