-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
160 lines (158 loc) · 4.53 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
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
160
<!-- @format -->
<!DOCTYPE html>
<html>
<head>
<title>3DTiles examples</title>
<link rel="stylesheet" href="./style.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<section>
<div id="panel">
<div id="header">
<h1>
<div>3DTiles examples</div>
</h1>
<p>3DTiles created with Py3DTilers</p>
</div>
<div id="contentWrapper">
<div id="content">
<h2>Community</h2>
<ul>
<li>
<a href="https://projet.liris.cnrs.fr/vcity/">VCity project</a>
</li>
<li>
<a href="https://imu.universite-lyon.fr/">Labex IMU</a>
</li>
<li>
<a href="https://liris.cnrs.fr/">Liris</a>
</li>
</ul>
<h2>Code</h2>
<ul>
<li><a href="https://github.com/VCityTeam/UD-Demo-vcity-py3dtilers-lyon">Demo</a></li>
<li><a href="https://github.com/VCityTeam/py3dtilers">Py3DTilers</a></li>
</ul>
</div>
</div>
<div id="logos">
<img class="logo" src="./assets/img/logo-imu.png" />
<img class="logo" src="./assets/img/logo-liris.png" />
</div>
</div>
<div id="viewer">
<div id="projects">
<div class="example">
<a
href="./html/citygml_colors.html"
target="_blank"
rel="noopener"
>
<img
src="./assets/img/citygml_colors.png"
loading="lazy" class="image__img"
/>
<div class="image__overlay">
<div class="image__title">Color by class</div>
<p class="image__description">
3DTiles with color based on CityGML classes
</p>
</div>
</a>
</div>
<div class="example">
<a
href="./html/height_color.html"
target="_blank"
rel="noopener"
>
<img
src="./assets/img/height_color.png"
loading="lazy" class="image__img"
/>
<div class="image__overlay">
<div class="image__title">Color by height</div>
<p class="image__description">
3DTiles with color based on height
</p>
</div>
</a>
</div>
<div class="example">
<a
href="./html/textured.html"
target="_blank"
rel="noopener"
>
<img
src="./assets/img/textured.png"
loading="lazy" class="image__img"
/>
<div class="image__overlay">
<div class="image__title">Textured</div>
<p class="image__description">
3DTiles with texture
</p>
</div>
</a>
</div>
<div class="example">
<a
href="./html/all_lyon.html"
target="_blank"
rel="noopener"
>
<img
src="./assets/img/all_lyon.png"
loading="lazy" class="image__img"
/>
<div class="image__overlay">
<div class="image__title">Lyon</div>
<p class="image__description">
3DTiles of all Lyon boroughs
</p>
</div>
</a>
</div>
<div class="example">
<a
href="./html/all_lyon_lods.html"
target="_blank"
rel="noopener"
>
<img
src="./assets/img/all_lyon_lods.png"
loading="lazy" class="image__img"
/>
<div class="image__overlay">
<div class="image__title">Lyon with LoD</div>
<p class="image__description">
3DTiles of all Lyon's buildings with levels of detail
</p>
</div>
</a>
</div>
<div class="example">
<a
href="./html/wide.html"
target="_blank"
rel="noopener"
>
<img
src="./assets/img/wide.png"
loading="lazy" class="image__img"
/>
<div class="image__overlay">
<div class="image__title">Rhône</div>
<p class="image__description">
3DTiles of Rhône's buildings (+800k buildings)
</p>
</div>
</a>
</div>
</div>
</div>
</section>
</body>
</html>