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
|
||||
|
||||
## [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
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
version: "0.8.4"
|
||||
version: "0.8.5"
|
||||
|
||||
bot:
|
||||
name: "MeshDD-Bot"
|
||||
|
|
|
|||
|
|
@ -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>';
|
||||
|
|
|
|||
Loading…
Reference in a new issue