-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (65 loc) · 2.82 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
<!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 app 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>Nemi Campaign</title>
<!-- The Cesium library. -->
<script src="https://cesium.com/downloads/cesiumjs/releases/1.69/Build/Cesium/Cesium.js"></script>
<link href="https://cesium.com/downloads/cesiumjs/releases/1.69/Build/Cesium/Widgets/widgets.css" rel="stylesheet">
<!-- Style our app. -->
<link rel="stylesheet" href="index.css" media="screen">
</head>
<body>
<!-- A container for the Cesium Viewer to live in. -->
<div id="cesiumContainer"></div>
<!-- Some input elements for our app. -->
<div class="backdrop" id="menu">
<h2>Nemi Campaign 2017 - 2018</h2>
<span>Archelogical cartography campaigns had been done in Nemi, Italy.<span>
<br>
<span>Ancient roman objects are measured photogrammetrically in 2017-2018.<span>
<br>
<Span>3D meshed and point cloud models were generated from these Campaigns.<span>
<!--<span><strong>Camera Mode</strong></span>
<div class="nowrap">
<input id="freeMode" name="source" type="radio" checked/>
<label for="freeMode">Free</label>
</div>
<div class="nowrap">
<input id="droneMode" name="source" type="radio"/>
<label for="droneMode">Drone View</label>
</div>
<br>
<span><strong>3d Tile Styling</strong></span>
<div class="nowrap">
<select id="tileStyle">
<option value="none">None</option>
<option value="height">Height</option>
<option value="transparent">Transparent</option>
</select>
</div>
<br>
<span><strong>Display Options</strong></span>
<div class="nowrap">
<input id="shadows" type="checkbox"/>
<label for="shadows">Shadows</label>
</div>
<div class="nowrap">
<input id="neighborhoods" type="checkbox" checked/>
<label for="neighborhoods">Neighborhoods</label>
</div>
<br>-->
</div>
<div id="loadingIndicator" class="cover">
<div id="loadingIcon" class="loadingIndicator"></div>
</div>
<!-- Our app code. -->
<script src="Source/App.js"></script>
</body>
</html>