Order locations by scrobble timestmap

This commit is contained in:
2023-11-27 18:49:24 +01:00
parent 5aa155094f
commit 7564292f5b
3 changed files with 147 additions and 3 deletions

View File

@ -20,9 +20,9 @@
crossorigin=""></script>
<script>
var map = L.map('map').setView([{{latest.lat}}, {{latest.lon}}], 13);
var map = L.map('map').setView([{{latest.lat}}, {{latest.lon}}], 17);
L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
maxZoom: 19,
maxZoom: 20,
attribution: '&copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>'
}).addTo(map);
var marker = L.marker([{{latest.lat}}, {{latest.lon}}]).addTo(map);