Stuff
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Kekskurse 2022-01-16 13:00:26 +01:00
parent a25f720fad
commit 66de945087
Signed by: kekskurse
GPG Key ID: 728ACCB59341E7E4
1 changed files with 3 additions and 4 deletions

View File

@ -7,12 +7,13 @@
crossorigin=""></script>
<style type="text/css">
#map { height: 100%; }
#map { height: 80%; }
</style>
</head>
<body>
<div id="map"></div>
Last Update: <span id="update"></span>
<script>
var map = L.map('map').setView([51.505, -0.09], 18);
@ -22,8 +23,6 @@
circle = L.circle([50.5, 30.5], {radius: 200}).addTo(map);
marker = L.marker([51.5, -0.09]).addTo(map)
.bindPopup('A pretty CSS3 popup.<br> Easily customizable.')
.openPopup();
function update() {
fetch('/json')
@ -32,7 +31,7 @@
map.setView([data["lat"], data["lon"]], 18);
circle.setLatLng([data["lat"], data["lon"]])
marker.setLatLng([data["lat"], data["lon"]])
marker.bindPopup(data["tst"]).openPopup();
document.getElementById("update").innerHTML = data["tst"]
circle.setRadius(data["acc"])
});
}