-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (31 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="https://openlayers.org/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>URL Rewriter Demo</title>
<link rel="stylesheet" href="style.css">
</head>
<body style="overflow: hidden;">
<div id="maindiv">
<div style="width: 0px; height: 0px; padding-bottom: 5px; padding-top: 5px">
Identifier:
<input id="identifierInput" type="text" style="width:900px"/>
<input id="openBtn" type="button" value="Öffnen"/>
<!-- <input id="scanBtn" type="button" value="QR-Code scannen"/> -->
</div>
<div id="map">
</div>
<div id="popup" class="ol-popup">
<a href="#" id="popup-closer" class="ol-popup-closer"></a>
<div id="popup-content"></div>
</div>
</div>
<img id="scanBtn" style="width: 15%; height : 15%; position: absolute; bottom: 10%; right: 10%" title="scan qr code" src="qr-code-scan-icon.svg"/>
<div id="readerbase" style="width: 100%; height: 100%; position: absolute; top: 0%; left: 0%; z-index: 0; background-color: aliceblue;">
<div id="reader"></div>
</div>
<script type="module" src="main.js"></script>
</body>
</html>