-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathperspective.html
More file actions
63 lines (60 loc) · 1.88 KB
/
Copy pathperspective.html
File metadata and controls
63 lines (60 loc) · 1.88 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Use correct character set. -->
<meta charset="utf-8">
<!-- Tell IE to use the latest, best version. -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Make the application on mobile take up the full browser screen and disable user scaling. -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<title>Below the wings</title>
<script src="../Build/Cesium/Cesium.js"></script>
<style>
@import url(../Build/Cesium/Widgets/widgets.css);
html, body, #cesiumContainer {
width: 100%; height: 100%; margin: 0; padding: 0; overflow: hidden;
}
#slider {
position: absolute;
left: 50%;
top: 0px;
background-color: #D3D3D3;
width: 3px;
height: 100%;
z-index: 9999;
}
#slider:hover {
cursor: ew-resize;
}
.toolbar-left {
display: block;
position: absolute;
top: 5px;
left: 5px;
font-family: Sans-Serif;
}
.tip {
background-color: grey;
border-radius: 2px;
}
.button {
border-radius: 5px;
}
</style>
</head>
<body>
<div id="cesiumContainer"></div>
<div class="toolbar-left">
<div class="tip"> Explore Population Density Data </div>
<div> </div>
<button class="button" onclick="location.href = '/top_view.html';">Back to Overview</button>
</div>
<div id="slider"></div>
<script src="js/init_cesium.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/lock_camera_only_pivot.js"></script>
<script src="js/place_state_parks.js"></script>
<script src="js/add_flight_path.js"></script>
<script src="js/layer_maps.js"></script>
</body>
</html>