-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
51 lines (49 loc) · 2.29 KB
/
template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>FF Pitten Einsatzplan</title>
<link href="../template.css" rel="stylesheet" type="text/css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY=" crossorigin="" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo=" crossorigin=""></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
<script type="text/javascript">
const startLat = @@STARTLAT@@;
const startLong = @@STARTLONG@@;
const endLat = @@ENDLAT@@;
const endLong = @@ENDLONG@@;
const routeJson = @@ROUTEJSON@@;
const hydrantsJson = @@HYDRANTSJSON@@;
const routeSteps = @@ROUTESTEPS@@;
</script>
<script type="text/javascript" src="../ffAlarmPrinter.js"></script>
</head>
<body onload="initialize()">
<div id="page" class="page" style="">
<div id="back-link">
<a href="../archiv.html">Zum Archiv</a> | <a href="../index.html">Zum Index</a>
</div>
<div id="header">
<h1>@@HEADER1@@</h1>
<h2>@@HEADER2@@</h2>
</div>
<div id="einsatzdaten" style="">
<div class="inputliste">
@@INPUTLISTE@@
<div class="zeile" id="einsatz-anfahrt">
<div class="links">
Wegstrecke:
</div>
<div class="rechts" id="einsatz-anfahrt-data">
</div>
</div>
</div>
</div>
<div id="map"></div>
<div id="directionsPanel" style=""></div>
</div>
</body>
</html>