fix(map): Legende nach topleft verschoben (fixes #5)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
84e1354ce5
commit
407addc919
|
|
@ -1,5 +1,11 @@
|
||||||
# Changelog
|
# 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
|
## [0.8.4] - 2026-02-19
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
version: "0.8.4"
|
version: "0.8.5"
|
||||||
|
|
||||||
bot:
|
bot:
|
||||||
name: "MeshDD-Bot"
|
name: "MeshDD-Bot"
|
||||||
|
|
|
||||||
|
|
@ -140,7 +140,7 @@ function connectWebSocket() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Legend
|
// Legend
|
||||||
const legend = L.control({ position: 'bottomright' });
|
const legend = L.control({ position: 'topleft' });
|
||||||
legend.onAdd = function () {
|
legend.onAdd = function () {
|
||||||
const div = L.DomUtil.create('div', 'legend');
|
const div = L.DomUtil.create('div', 'legend');
|
||||||
div.innerHTML = '<strong>Hops</strong>';
|
div.innerHTML = '<strong>Hops</strong>';
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue