mapcomplete/index.html

73 lines
2.2 KiB
HTML
Raw Normal View History

2020-06-23 22:35:19 +00:00
<!DOCTYPE html>
<!-- WARNING: index.html serves as a template. If you want to change something, change it there -->
2020-06-23 22:35:19 +00:00
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
2020-06-23 22:35:19 +00:00
<title>MapComplete</title>
2020-07-25 16:00:08 +00:00
<link rel="stylesheet" href="./vendor/leaflet.css"/>
2020-06-23 22:35:19 +00:00
<link rel="stylesheet" href="./index.css"/>
<link rel="stylesheet" href="./css/userbadge.css"/>
<link rel="stylesheet" href="./css/tabbedComponent.css"/>
<link rel="stylesheet" href="./css/slideshow.css"/>
<link rel="stylesheet" href="./css/mobile.css"/>
2020-09-30 20:22:58 +00:00
<link rel="stylesheet" href="./css/openinghourstable.css"/>
2020-10-27 00:01:34 +00:00
<link rel="stylesheet" href="./css/tagrendering.css"/>
2020-11-16 01:33:44 +00:00
<link rel="stylesheet" href="./css/imageUploadFlow.css"/>
<link rel="stylesheet" href="./css/fullscreenmessagebox.css"/>
2020-12-07 02:02:50 +00:00
<link href="css/ReviewElement.css" rel="stylesheet"/>
<!-- $$$CUSTOM-CSS -->
<link rel="manifest" href="./manifest.manifest">
2020-12-14 00:14:22 +00:00
<link rel="icon" href="assets/svg/add.svg" sizes="any" type="image/svg+xml">
2020-07-24 13:58:11 +00:00
<meta property="og:type" content="website">
<!-- $$$OG-META -->
<style>
#decoration-desktop img {
width: 100%;
height: 100%;
}
</style>
2020-11-24 13:35:16 +00:00
2020-06-23 22:35:19 +00:00
</head>
<body>
2020-07-31 16:07:55 +00:00
<div style="position: absolute; left: 1em; bottom: 1em; width:35vh; height:35vh;"
id="decoration-desktop">
2020-07-31 16:07:55 +00:00
<!-- A nice decoration while loading or on errors -->
<!-- DECORATION 0 START -->
2020-12-14 00:14:22 +00:00
<img src="./assets/svg/add.svg"/>
<!-- DECORATION 0 END -->
2020-07-31 16:07:55 +00:00
</div>
<div class="only-on-mobile">
<div id="messagesboxmobile">
</div>
</div>
2020-06-23 22:35:19 +00:00
<div id="topleft-tools">
2020-07-15 11:15:36 +00:00
<div id="userbadge-and-search">
2020-07-25 16:00:08 +00:00
<div id="userbadge" class="shadow">
2020-07-01 00:12:33 +00:00
</div>
2020-07-25 16:00:08 +00:00
<div id="searchbox" class="shadow"></div>
2020-06-23 22:35:19 +00:00
</div>
2020-07-23 23:12:57 +00:00
<div id="messagesbox"></div>
2020-07-25 16:00:08 +00:00
<br/>
<div id="help-button-mobile"></div>
2020-06-23 22:35:19 +00:00
</div>
<div id="layer-selection">
2020-07-22 09:01:25 +00:00
</div>
2020-06-23 22:35:19 +00:00
2020-12-14 00:14:22 +00:00
<div id="centermessage">Loading MapComplete, hang on...</div>
2020-07-29 13:05:19 +00:00
<div id="top-right"></div>
2020-06-23 22:35:19 +00:00
2020-10-05 23:37:02 +00:00
<span id="geolocate-button"></span>
2020-06-23 22:35:19 +00:00
<div id="leafletDiv"></div>
<script src="./index.ts"></script>
2020-12-14 00:14:22 +00:00
<script data-goatcounter="https://pietervdvn.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
2020-06-23 22:35:19 +00:00
</body>
</html>