summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..22d9d9a
--- /dev/null
+++ b/index.html
@@ -0,0 +1,37 @@
+<!doctype html>
+<html>
+ <head>
+ <meta charset="utf-8" />
+ <title>Aschaffenburg.FUN</title>
+ <script src="init.js" type="module" defer></script>
+ <meta
+ name="viewport"
+ content="initial-scale=1,maximum-scale=1,user-scalable=no"
+ />
+ <style>
+ body {
+ margin: 0;
+ padding: 0;
+ }
+ #map {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ width: 100%;
+ }
+ #reload {
+ font-size: 2em;
+ position: fixed;
+ left: 5px;
+ bottom: 5px;
+ }
+ .maplibregl-ctrl-bottom-right {
+ display: none;
+ }
+ </style>
+ </head>
+ <body>
+ <div id="map"></div>
+ <button id="reload" onclick="location.reload()">Reload</button>
+ </body>
+</html>