-
Notifications
You must be signed in to change notification settings - Fork 55
/
index.html
57 lines (54 loc) · 1.57 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
<!DOCTYPE html>
<html >
<head>
<meta charset="utf-8">
<title>drawForCesium</title>
<link href="js/cesium/Widgets/widgets.css" rel="stylesheet" />
<link href="css/DrawWorker.css" rel="stylesheet" />
<style>
html, body, #cesiumContainer {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
.cesium-viewer-bottom {
display: none;
}
#toolbar {
position: absolute;
top: 0px;
left: 0;
display: inline;
margin: 10px;
padding: 0px;
background: white;
}
#loggingText {
position: absolute;
bottom: 35px;
right: 0;
display: inline;
margin: 10px;
padding: 10px;
background: white;
}
</style>
<script type="text/javascript" src="js/cesium/Cesium.js"></script>
<script type="text/javascript" src="js/jquery/jquery.min.js"></script>
<script type="text/javascript" src="js/DrawWorker/plotUtil.js"></script>
<script type="text/javascript" src="js/DrawWorker/plotUtil.js"></script>
<script type="text/javascript" src="js/DrawWorker/algorithm.js"></script>
<script type="text/javascript" src="js/DrawWorker/DrawWorker.js"></script>
<script type="text/javascript" src="js/DrawWorker/draw.js"></script>
</head>
<body>
<div id="cesiumContainer">
</div>
<div id="toolbar">
</div>
<div id="loggingText">
</div>
</body>
</html>