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
How can the print parameters settings panel (Left panel) be collapsed/expanded (Responsive) when on mobile devices?
The text was updated successfully, but these errors were encountered:
You can use CSS and and media query to make it more responsible. The current CSS only change the width of the panel:
@media (max-width: 25em) { .ol-ext-print-dialog .ol-print-param { width: 13em; } } @media (max-width: 25em) { .ol-ext-print-dialog .ol-print-map { width: calc(100% - 13em); } }
You can add a button to toggle the panel using getUserElement (or getContentElement):
var bt = document.createElement('BUTTON') bt.innerText = 'ok' printControl.getUserElement().appendChild(bt)
Sorry, something went wrong.
No branches or pull requests
How can the print parameters settings panel (Left panel) be collapsed/expanded (Responsive) when on mobile devices?
The text was updated successfully, but these errors were encountered: