-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKarte.html
More file actions
28 lines (28 loc) · 1.05 KB
/
Karte.html
File metadata and controls
28 lines (28 loc) · 1.05 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Fahrten Simulator</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" />
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
<script src="./leaflet.rotatedMarker.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjs/12.4.0/math.js" type="text/javascript"></script>
<link rel="stylesheet" href="./Karte.css" />
<link href="https://fonts.googleapis.com/css2?family=Playwrite+PE:wght@100..400&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Fahrten Simulator</h1>
</header>
<div id="Route">
<label for="Start">Start:</label>
<input id="Start" required></input>
<label for="Ende">Ziel:</label>
<input id="Ende" required></input>
<button id="ready">Los</button>
</div>
<div class="map-container">
<div id="map"></div>
</div>
<script type="module" src="./Karte.js" ></script>
</body>
</html>