fix briefly disappearing data layer during background layer transition

(fixes part of #10748)
This commit is contained in:
Martin Raifer
2025-02-09 19:36:16 +01:00
parent 7b8cf06503
commit 057af4d352
2 changed files with 10 additions and 0 deletions
+1
View File
@@ -44,6 +44,7 @@ _Breaking developer changes, which may affect downstream projects or sites that
* Add warning if aeroways cross each other, buildings or highways ([#9315], thanks [@k-yle])
#### :bug: Bugfixes
* Prevent degenerate ways caused by deleting a corner of a triangle ([#10003], thanks [@k-yle])
* Fix briefly disappearing data layer during background layer tile switching transition ([#10748])
#### :earth_asia: Localization
#### :hourglass: Performance
#### :mortar_board: Walkthrough / Help
+9
View File
@@ -4449,6 +4449,15 @@ img.tile-debug {
bottom: 0;
}
.layer-background {
z-index: 1;
}
.layer-overlay {
z-index: 2;
}
.layer-data {
z-index: 3;
}
/* Map-In-Map
------------------------------------------------------- */