-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (44 loc) · 1.7 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./leaflet/leaflet.css" />
<link rel="stylesheet" href="./css/app.css" />
<link rel="stylesheet" href="./bootstrap/css/bootstrap.min.css" />
<script src="./leaflet/leaflet.js"></script>
<script src="./src/app.js"></script>
<script src="./src/main.js"></script>
<script src="./jquery/jquery-3.7.0.min.js"></script>
<script src="./bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="./jszip/jszip.min.js"></script>
</head>
<body>
<button type="button" class="btn btn-sm btn-secondary menu-btn" id="button" data-bs-toggle="offcanvas"
data-bs-target="#menu">
Menu
</button>
<div id="container" class="h-100">
<div id="map" style="height: 100%">
</div>
</div>
<div class="offcanvas offcanvas-start" data-bs-scroll="true" data-bs-backdrop="false" tabindex="-1" id="menu"
aria-labelledby="menu-label" aria-controls="menu">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="menu-label">Menu</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<input type="file" id="file" style="display:none" onchange="file_selected()"/><button onclick="showfilebrowser()">Open Survey</button>
<h3>Layers Loaded</h3>
<div id="layers_list">
</div>
</div>
</div>
</body>
<script>
$(function () {
//$('#file').change(file_selected);
//setup();
})
</script>
</html>