This commit is contained in:
parent
ebe3adb991
commit
8ae4307866
1 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@
|
|||
<div id="map"></div>
|
||||
|
||||
<script>
|
||||
var map = L.map('map').setView([51.505, -0.09], 18);
|
||||
var map = L.map('map').setView([51.505, -0.09], 5);
|
||||
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
||||
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
|
||||
}).addTo(map);
|
||||
|
@ -26,7 +26,7 @@
|
|||
fetch('/json')
|
||||
.then(response => response.json())
|
||||
.then(data => {
|
||||
map.setView([data["lat"], data["lon"]], 18);
|
||||
map.setView([data["lat"], data["lon"]], 5);
|
||||
circle.setLatLng([data["lat"], data["lon"]])
|
||||
circle.setRadius(data["acc"])
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue