blob: 0fa0ceaefb9a9a23335507358f1b781b3a3cbe0c (
about) (
plain) (
blame)
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
52
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.4/leaflet.css" integrity="sha512-Zcn6bjR/8RZbLEpLIeOwNtzREBAJnUKESxces60Mpoj+2okopSAcSUIUOseddDm0cxnGQzxIR7vJgsLZbdLE3w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="map">
</div>
<form name="gpx-upload-form" class="box">
<div>
<label for="gpx-file">Upload een GPX-bestand:</label>
<input type="file" id="gpx-file-input" name="gpx-file" accept="application/gpx+xml,.gpx" autofocus />
</div>
<div>
<input type="submit" value="Opsturen" />
</div>
</form>
<div id="sysinfo" class="box">
<h3>Routemon</h3>
<a href="https://codeberg.org/rutgerbrf/routemon">Broncode</a>
<details>
<summary>
<span>Systeeminformatie</span>
</summary>
<table>
<tr>
<td class="help-cursor" title="Publicatietijdstip van ingeladen DATEX II-situatiepublicatie (van NDW)">Situatiepublicatie van</td>
<td id="situation-publication-of"><onbekend></td>
</tr>
</table>
</details>
</div>
<dialog class="box">
<h3 id="dialog-title"></h3>
<p id="dialog-message"></p>
<details>
<summary>Meer informatie</summary>
<small id="dialog-more-info"></small>
</details>
<button autofocus>Sluiten</button>
</dialog>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.4/leaflet.js" integrity="sha512-BwHfrr4c9kmRkLw6iXFdzcdWV/PGkVgiIyIWLLlTSXzWQzxuSg4DiQUCpauz/EWjgk5TYQqX/kvn9pG1NpYfqg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="index.js"></script>
</body>
</html>
|