-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
128 lines (118 loc) · 3.7 KB
/
index.html
File metadata and controls
128 lines (118 loc) · 3.7 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
<!doctype html>
<html>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<head>
<title>Cesium</title>
<style>
body {
font-family: sans-serif;
margin: 0;
padding: 0;
}
h2 {
margin-top: 0;
}
table,
p {
margin-left: 25px;
}
td {
padding-bottom: 15px;
vertical-align: top;
}
td:first-child {
padding-right: 15px;
}
.section:nth-child(even) {
background-color: #fff;
}
.section {
border: none;
padding: 20px 40px;
}
.section>* {
max-width: 800px;
}
</style>
</head>
<body style="background-color: #f5f7f9;">
<div>
<div class="section">
<h2>Cesium Pro SDK</h2>
<p>
Cesium扩展工具
</p>
</div>
<div class="section">
<h2>本地链接</h2>
<table>
<tbody>
<tr>
<td><a href="documents/index.html">文档</a></td>
<td>Cesium工具箱使用文档</td>
</tr>
<tr>
<td><a href="examples/helloworld.html">Hello World</a></td>
<td>一个简单的三维场景</td>
</tr>
<tr>
<td><a href="examples/apps/index.html">示例合集</a></td>
<td>Cesium工具箱主要功能示例。
</td>
</tr>
<tr>
<td><a href="Specs/SpecRunner.html">项目案例</a></td>
<td>典型项目示例</td>
</tr>
</tbody>
</table>
</div>
<div class="section">
<h2>Cesium相关</h2>
<table>
<tbody>
<tr>
<td><a href="https://cesium.com">Cesium</a></td>
<td>Learn about the Cesium team and the Cesium ion platform</td>
</tr>
<tr>
<td><a href="https://cesium.com/blog/">Cesium Blog</a></td>
<td>Follow project news, developer tips, and posts about Cesium's innovative technology</td>
</tr>
<tr>
<td><a href="https://cesium.com/docs/">Tutorials</a></td>
<td>Step-by-step guides for learning to use CesiumJS</td>
</tr>
<tr>
<td><a href="https://groups.google.com/forum/?hl=en#!forum/cesium-dev">Forum</a></td>
<td>Questions and feedback welcome from all skill levels</td>
</tr>
<tr>
<td><a href="https://github.com/CesiumGS/cesium">GitHub</a></td>
<td>The official CesiumJS GitHub repository</td>
</tr>
<tr>
<td><a href="https://cesium.com/blog/categories/userstories/">User Stories</a></td>
<td>Demos and information about projects using CesiumJS</td>
</tr>
<tr>
<td><a href="http://webglreport.com/">WebGL Report</a></td>
<td>Provides technical information about WebGL capabilities supported by your browser</td>
</tr>
</tbody>
</table>
<div style="padding-top: 300px; font-size: 10pt; vertical-align: bottom;">
© 2011-2020 CesiumJS Contributors
</div>
</div>
</div>
<script type="text/javascript">
if (window.location.protocol === 'file:') {
document.body.innerHTML = '';
document.write('<p><b>This file must be hosted in a web server.</br>');
document.write('See our <a href="https://cesium.com/docs/tutorials/cesium-workshop/#setup">Cesium Workshop</a> ');
document.write('tutorial for a step-by-step guide.</b></p>');
}
</script>
</body>
</html>