We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using with jupyter sidecar, the map can be placed on the right side of the notebook screen:
Right now the div containing the deck.gl widget is hard-coded to 500px:
lonboard/src/scatterplot-layer.tsx
Line 80 in d4a05a3
This means that when used with sidecar, if the screen is more than 500px tall, it'll have a weird empty space at the bottom.
Ideally we want to let the widget fill all available height in its containing div, but I can't figure out how to do that. When I switch to, say,
style={{ display: "flex", flexFlow: "column", flexGrow: 1, overflow: "auto" }}
it creates a div with zero height:
cc @vgeorge
The text was updated successfully, but these errors were encountered:
Closed by #220
Sorry, something went wrong.
HTML map height is tracked in #247
No branches or pull requests
When using with jupyter sidecar, the map can be placed on the right side of the notebook screen:
Right now the div containing the deck.gl widget is hard-coded to 500px:
lonboard/src/scatterplot-layer.tsx
Line 80 in d4a05a3
This means that when used with sidecar, if the screen is more than 500px tall, it'll have a weird empty space at the bottom.
Ideally we want to let the widget fill all available height in its containing div, but I can't figure out how to do that. When I switch to, say,
it creates a div with zero height:
cc @vgeorge
The text was updated successfully, but these errors were encountered: