-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.62 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Topotest</title>
<link rel="stylesheet" href="/src/style.css">
</head>
<body>
<div id="country_name_tooltip">
<p id="country_name"></p>
</div>
<div id="selector">
<div>Start: <input type="date" name="start" id="start"></div>
<div>Ende: <input type="date" name="end" id="end"></div>
<div id="buttons">
<button id="load">Load</button>
<button id="download">Download</button>
<button id="map">Toggle Map</button>
<button id="xyzw-zoom-in-button" class="map"> + </button>
<button id="xyzw-zoom-out-button" class="map"> - </button>
</div>
<p style="color: red; font-size: 18px;">Disclaimer: Es werden im moment nicht alle Nachrichten richtig verarbeitet, also fallen ein paar raus.</p>
<p id="last_refresh" class="list"></p>
<p id="infotext" class="list"></p>
</div>
<div id="wrapper" class="list">
<div id="app">Den Datumszeitraum oben in die zwei Datenfelder eingeben, "Load" clicken und eine Liste von allen Nachrichten aus dem Ausland von der Tagesschau sortiert nach Land erhalten</div>
</div>
<div id="map_container" class="map">
<div id="world_map" class="map"></div>
</div>
<div id="tooltip" class="map"></div>
<p id="source">Sourcecode: <a href="https://github.com/RedCommander735/topotest">Topotest</a></p>
<script type="module" src="/src/main.ts"></script>
</body>
</html>