Fix: Karte — Zoom-Ausrichtung, 'Z14' kürzer, Marker-Count ausgeblendet
- leaflet-top padding-top 28→33px (Zoom-Buttons mittig zu 2 Filter-Reihen) - Zoom-Anzeige: 'Zoom 14 · ab 14: alle Layer' → 'Z14' (Hinweis als title) - #map-osm-status ausgeblendet (Marker-Anzahl nimmt Platz von Wetter etc.) - components.css ?v=1012, SW by-v1019, APP_VER 1019
This commit is contained in:
parent
562d64979f
commit
e44414015a
6 changed files with 10 additions and 10 deletions
|
|
@ -410,7 +410,7 @@ async def serve_media(path: str, request: _Request):
|
|||
raise _HE(404, "Nicht gefunden.")
|
||||
return _media_response(filepath)
|
||||
|
||||
APP_VER = "1018" # muss mit APP_VER in app.js übereinstimmen
|
||||
APP_VER = "1019" # muss mit APP_VER in app.js übereinstimmen
|
||||
|
||||
@app.get("/.well-known/assetlinks.json")
|
||||
async def assetlinks():
|
||||
|
|
|
|||
|
|
@ -3087,8 +3087,8 @@ html.modal-open {
|
|||
}
|
||||
@media (min-width: 768px) {
|
||||
.map-full-layout { top: 0; left: var(--nav-sidebar-width); bottom: 0; }
|
||||
/* Zoom-Control und Filter-Tabs unter die Statusleiste schieben */
|
||||
.map-full-layout .leaflet-top { padding-top: 28px; }
|
||||
/* Zoom-Control vertikal zentriert zu beiden Filter-Reihen */
|
||||
.map-full-layout .leaflet-top { padding-top: 33px; }
|
||||
}
|
||||
.map-full { width: 100%; height: 100%; }
|
||||
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@
|
|||
<!-- CSS: Reihenfolge ist wichtig — ?v= zwingt Browser zur Neuladung -->
|
||||
<link rel="stylesheet" href="/css/design-system.css?v=907">
|
||||
<link rel="stylesheet" href="/css/layout.css?v=1013">
|
||||
<link rel="stylesheet" href="/css/components.css?v=1011">
|
||||
<link rel="stylesheet" href="/css/components.css?v=1012">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
Router, State-Management, Navigation, Initialisierung.
|
||||
============================================================ */
|
||||
|
||||
const APP_VER = '1018'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
|
||||
const APP_VER = '1019'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
|
||||
const APP_VERSION = '1.6.0'; // ← semantische Version, wird bei make release gesetzt
|
||||
const IS_STAGING = location.hostname === 'staging.banyaro.app';
|
||||
// Cache-Bust-Parameter nach Update-Reload sofort entfernen
|
||||
|
|
|
|||
|
|
@ -216,7 +216,7 @@ window.Page_map = (() => {
|
|||
|
||||
<div class="map-statusbar" id="map-statusbar">
|
||||
<span id="map-zoom-info"></span>
|
||||
<span id="map-osm-status"></span>
|
||||
<span id="map-osm-status" style="display:none"></span>
|
||||
<span class="map-statusbar-sep map-weather-chip--hidden" id="map-weather-sep">·</span>
|
||||
<span class="map-weather-chip--hidden" id="map-weather-info"></span>
|
||||
</div>
|
||||
|
|
@ -619,9 +619,9 @@ window.Page_map = (() => {
|
|||
const z = Math.round(_map.getZoom());
|
||||
const el = document.getElementById('map-zoom-info');
|
||||
if (!el) return;
|
||||
if (z < 10) { el.textContent = `Zoom ${z} · ab 10: Giftköder`; el.style.opacity = '0.5'; }
|
||||
else if (z < 14) { el.textContent = `Zoom ${z} · ab 14: alle Layer`; el.style.opacity = '0.7'; }
|
||||
else { el.textContent = `Zoom ${z}`; el.style.opacity = '1'; }
|
||||
if (z < 10) { el.textContent = `Z${z}`; el.title = 'Ab Z10: Giftköder'; el.style.opacity = '0.5'; }
|
||||
else if (z < 14) { el.textContent = `Z${z}`; el.title = 'Ab Z14: alle Layer'; el.style.opacity = '0.7'; }
|
||||
else { el.textContent = `Z${z}`; el.title = ''; el.style.opacity = '1'; }
|
||||
}
|
||||
|
||||
function _setOsmStatus(text, pct = null) {
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
Offline-Cache + Push Notifications + Tile-Cache
|
||||
============================================================ */
|
||||
|
||||
const CACHE_VERSION = 'by-v1018';
|
||||
const CACHE_VERSION = 'by-v1019';
|
||||
const CACHE_STATIC = `${CACHE_VERSION}-static`;
|
||||
const CACHE_TILES = 'ban-yaro-tiles-v1'; // bleibt über SW-Updates erhalten
|
||||
const CACHE_API = 'ban-yaro-api-v1'; // API-Response-Cache
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue