nakarte

Source code of https://map.sikmir.ru (fork)
git clone git://git.sikmir.ru/nakarte
Log | Files | Refs | LICENSE

commit f896528fd2f47e4602a627acab0eda674cefb7ae
parent 4a896403e154fbe21647498acade04afa70b4a7c
Author: Sergej Orlov <wladimirych@gmail.com>
Date:   Tue, 16 Sep 2025 11:52:32 +0200

external maps: add link to Meteoblue weather forecast

Diffstat:
Msrc/lib/leaflet.control.external-maps/index.js | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/src/lib/leaflet.control.external-maps/index.js b/src/lib/leaflet.control.external-maps/index.js @@ -73,6 +73,12 @@ const ExternalMaps = L.Control.extend({ title: 'Wikimapia', externalMap: new ExternalMap('https://wikimapia.org/#lat={lat}&lon={lng}&z={zoom}', 3, 22), }, + { + title: 'Meteoblue', + // As of now Meteoblue produces and accepts coordinates with sign and fixed characters N and E for + // all hemispheres + externalMap: new ExternalMap('https://www.meteoblue.com/en/weather/week/{lat}N{lng}E', 0, 18), + }, ], },