forked from CesiumGS/cesium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
159 lines (148 loc) · 3.78 KB
/
index.html
File metadata and controls
159 lines (148 loc) · 3.78 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!doctype html>
<html>
<head>
<title>Cesium</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<style>
body {
font-family: sans-serif;
margin: 0;
padding: 0;
}
h2 {
margin-top: 0;
}
a,
a:visited {
color: blue;
}
li {
margin-top: 5px;
}
.smallFont {
font-size: 60%;
}
.section {
border: none;
padding: 20px 40px;
&:nth-child(odd) {
background-color: #f5f7f9;
}
}
@media (prefers-color-scheme: dark) {
body {
background: #181a1b;
color: white;
}
.section:nth-child(odd) {
background: #1d1f20;
}
a,
a:visited {
color: #6dabe4;
}
}
</style>
</head>
<body>
<div class="section">
<picture>
<source
srcset="
./packages/sandcastle/public/images/Cesium_Logo_Color_Overlay_Light.png
"
media="(prefers-color-scheme: dark)"
/>
<img
src="./packages/sandcastle/public/images/Cesium_Logo_Color_Overlay.png"
style="width: 400px"
/>
</picture>
</div>
<div class="section">
<h2>Apps</h2>
<ul>
<li>
<a href="Apps/CesiumViewer/index.html">Cesium Viewer</a>
(<a href="Build/Apps/CesiumViewer/index.html">built version</a>)
</li>
<li>
<a href="Apps/HelloWorld.html">Hello World</a>
</li>
<li>
<a href="Apps/Sandcastle2/index.html">Sandcastle</a>
<ul>
<li>
<a href="Apps/Sandcastle/index.html">Legacy Sandcastle</a>
</li>
</ul>
</li>
<li>
<a href="Apps/CesiumViewer/index.html?inspector=true"
>Cesium Inspector</a
>
(with
<a href="Apps/Sandcastle/gallery/Cesium%20Inspector.html"
>example primitives</a
>) (with
<a
href="Apps/CesiumViewer/index.html?source=../SampleData/simple.czml&inspector=true"
>simple CZML</a
>)
</li>
<li>
<a href="Apps/TimelineDemo/index.html">Timeline Demo</a>
</li>
</ul>
</div>
<div class="section">
<h2>Tests</h2>
<ul>
<li>
<a href="Specs/SpecRunner.html">Run all tests</a>
<span class="smallFont"
>(<a href="Specs/SpecRunner.html?webglValidation"
>Run with WebGL validation</a
>)</span
>
<span class="smallFont"
>(<a href="Specs/SpecRunner.html?webglStub">Run with WebGL stub</a
>)</span
>
</li>
<li>
<a href="Specs/SpecRunner.html?category=none">Select a test to run</a>
</li>
<li>
<a href="Specs/SpecRunner.html?category=WebGL"
>Run only WebGL tests</a
>
</li>
<li>
<a href="Specs/SpecRunner.html?not=WebGL">Run only non-WebGL tests</a>
</li>
<li>
<a href="Specs/SpecRunner.html?built=true"
>Run all tests against combined file</a
>
<span class="smallFont"
>(<a href="Specs/SpecRunner.html?built=true&release=true"
>Run all tests against combined file with debug code removed</a
>)</span
>
</li>
<li>
<a href="Build/Coverage/index.html">View coverage results</a>
</li>
</ul>
</div>
<div class="section">
<h2>Documentation</h2>
<ul>
<li>
<a href="Build/Documentation/index.html">Documentation</a>
</li>
</ul>
</div>
</body>
</html>