fix(map): Legende nach topleft verschoben (fixes #5)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
ppfeiffer 2026-02-19 17:11:41 +01:00
parent 84e1354ce5
commit 407addc919
3 changed files with 8 additions and 2 deletions

View file

@ -1,5 +1,11 @@
# Changelog
## [0.8.5] - 2026-02-19
### Fixed
- **Kartenlegende Position**: Legende von `bottomright` nach `topleft` verschoben,
neben die Zoom-Steuerung (fixes Issue #5).
## [0.8.4] - 2026-02-19
### Added

View file

@ -1,4 +1,4 @@
version: "0.8.4"
version: "0.8.5"
bot:
name: "MeshDD-Bot"

View file

@ -140,7 +140,7 @@ function connectWebSocket() {
}
// Legend
const legend = L.control({ position: 'bottomright' });
const legend = L.control({ position: 'topleft' });
legend.onAdd = function () {
const div = L.DomUtil.create('div', 'legend');
div.innerHTML = '<strong>Hops</strong>';