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
Describe the bug Parts of a map are rendered above a dialog.
To Reproduce Code
@Route("dialog-demo") public class DialogDemo extends FlexLayout { public DialogDemo() { setSizeFull(); MapOptions options = new DefaultMapOptions(); LeafletMap map = new LeafletMap(options); map.setHeight("50%"); map.setWidth("50%"); map.setBaseUrl("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"); TileLayer openStreetMap = new TileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"); openStreetMap.setAttribution("© <a href=https://www.openstreetmap.org/copyright>OpenStreetMap</a> contributors"); openStreetMap.addTo(map); add(map); Button openDialog = new Button("Open dialog"); openDialog.addThemeVariants(ButtonVariant.LUMO_PRIMARY); openDialog.addClickListener((event) -> { Dialog dialog = new Dialog(); dialog.setWidth("600px"); dialog.setHeight("400px"); dialog.open(); }); add(openDialog); } }
Steps to reproduce the behavior:
Expected behavior The dialog should be rendered above the entire UI
Screenshots
Desktop:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Parts of a map are rendered above a dialog.
To Reproduce
Code
Steps to reproduce the behavior:
Expected behavior
The dialog should be rendered above the entire UI
Screenshots
Desktop:
The text was updated successfully, but these errors were encountered: