-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (78 loc) · 2.17 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
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>webgl-globe</title>
<style>
html {
height: 100%;
}
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
display: grid;
grid-template-rows: 1fr auto auto auto 1fr;
place-items: center;
height: 100%;
margin: 0;
}
h1 {
font-size: 3em;
}
ul {
font-size: 1.2em;
}
li {
padding: 0.2em;
}
</style>
</head>
<body>
<div></div>
<h1>🌍 webgl-globe 🌎</h1>
<ul>
<li><a href="./examples/basic-debug/index.html">Basic (Debug Tiles)</a></li>
<li><a href="./examples/basic-network/index.html">Basic (Network Tiles)</a></li>
<li><a href="./examples/renderer-only/index.html">Renderer only</a></li>
<li>
<a href="./examples/inside-container/index.html">Inside Container</a>
</li>
<li>
<a href="./examples/renderer-only-layers/index.html">Renderer only (multiple layers)</a>
</li>
<li>
<a href="./examples/renderer-only-fade/index.html">Renderer only (fade textures)</a>
</li>
<li>
<a href="./examples/renderer-fullsize/index.html">Renderer only (fullsize image)</a>
</li>
<li>
<a href="./examples/marker/index.html">Marker</a>
</li>
<li>
<a href="./examples/layer/index.html">Layer</a>
</li>
<li>
<a href="./examples/globe/index.html">WebGlGlobe</a>
</li>
<li>
<a href="./examples/globe-timeslider/index.html">WebGlGlobe with Timeslider</a>
</li>
<li>
<a href="./examples/globe-timeslider-fullsize/index.html"
>WebGlGlobe with Timeslider (fullsize image)</a
>
</li>
<li>
<a href="./examples/globe-all-datasets/index.html">Globe – selectable datasets</a>
</li>
<li>
<a href="./examples/spinning/index.html">Spinning</a>
</li>
<li>
<a href="./examples/synced/index.html">Synced</a>
</li>
</ul>
<div></div>
</body>
</html>