blob: bd3d94c77671f5aaaf95ae94cad56f8ba2a8c9dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<div class="container">
Das <%= $backend %>-Backend „<%= $service %>“ liefert ungefähr innerhalb
der folgenden grob umrissenen Region voraussichtlich nützliche Echtzeitdaten.
</div>
<div class="container">
<div id="map" style="height: 70vh;">
</div>
</div>
<script>
const map = L.map('map').setView([51.306, 9.712], 6);
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
const coverage = L.geoJSON(<%== $coverage %>);
coverage.addTo(map);
map.fitBounds(coverage.getBounds());
</script>
|