forked from joemeszaros/speleo-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (67 loc) · 2.55 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Speleo studio</title>
<link rel="icon" type="image/svg+xml" href="/icons/logo.svg" />
<link rel="stylesheet" href="css/tree.css" />
<link rel="stylesheet" href="css/navbar.css" />
<link rel="stylesheet" href="css/tabulator_midnight.css" />
<link rel="stylesheet" href="css/main.css" />
<script src="dependencies/tree.js"></script>
<script type="importmap">
{
"imports": {
"three": "./dependencies/three/three.module.js",
"three/addons/": "./dependencies/three/addons/"
}
}
</script>
<script src="dependencies/tabulator.js"></script>
</head>
<body>
<div id="tree-panel"></div>
<div class="file-upload">
<input type="file" id="topodroidInput" accept=".csv" style="display: none" />
<input type="file" id="polygonInput" accept=".cave" multiple style="display: none" />
<input type="file" id="jsonInput" accept=".json" style="display: none" />
<input type="file" id="plyInput" accept=".ply" style="display: none" />
</div>
<div id="contextmenu" style="position: absolute; display: none; background-color: red">
<span color="red">menu</span>
<br />
<button id="getdistance"> get distance to here </button>
</div>
<div id="infopanel">
<span id="close">x</span>
<p id="content"></p>
</div>
<div id="cautionpanel" class="cautionpanel">
<span id="close" onclick="this.parentNode.style.display='none'; return false;">x</span>
<p id="content"></p>
</div>
<div id="navbarcontainer" , class="topnavbar"></div>
<div id="interactive" class="popup editor"></div>
<div id="welcome-panel">
<img src="images/logo.png" /><br /><br />Welcome to Speleo Studio.<br />
<button onclick="this.parentNode.style.display='none'; localStorage.setItem('welcome', 'false'); ">
Let's get started
</button>
</div>
<div id="cycle-panel" class="popup"> </div>
<div id="caveeditor" class="popup"> </div>
<div id="surveyeditor" class="popup"></div>
<div id="control-panel"></div>
<div id="footer" class="footer"></div>
<div id="overview" class="overview"></div>
<div id="view-helper" class="overview"></div>
<div id="viewport" class="viewport">
<div class="logo"><img width="80px" src="images/logo.png" /></div>
</div>
<script type="module" src="src/main.js"></script>
<script type="module">
import { Main } from './src/main.js';
new Main();
</script>
</body>
</html>