-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbimviewer.html
More file actions
237 lines (207 loc) · 9.96 KB
/
Copy pathbimviewer.html
File metadata and controls
237 lines (207 loc) · 9.96 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>xeokit BIMViewer Selected Examples</title>
<!-- Include Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<style>
.card {
transition: transform 0.2s; /* Add smooth transition effect */
}
.card:hover {
transform: scale(1.05); /* Slightly enlarge the card on hover */
}
.card {
display: block;
width: 100%;
height: 100%;
min-height: 400px;
text-decoration: none;
}
.card h4.card-title {
color: inherit;
}
.card p.card-text {
color: inherit;
}
.thumbnail {
max-width: 100%;
min-height: 200px;
max-height: 200px; /* Adjust this value for the desired height */
object-fit: cover; /* Maintain aspect ratio and cover thumbnail area */
}
a.card-link {
font-size: 18px;
color: inherit;
text-decoration: none;
display: block;
}
.card-title {
color: black;
}
.card:hover .card-title {
color: blue;
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container mt-5">
<h2 class="mb-3"><a href="https://xeokit.io">xeokit</a> / <a href="https://github.com/xeokit/xeokit-bim-viewer">BIMViewer</a>
Examples</h2>
<a href="https://badge.fury.io/js/@xeokit%2Fxeokit-bim-viewer"><img
src="https://badge.fury.io/js/@xeokit%2Fxeokit-bim-viewer.svg" alt="npm version" height="18"></a>
<br><br>
<p><a href="https://github.com/xeokit/xeokit-bim-viewer">BIMViewer</a> is an open source 2D/3D BIM viewer
that
runs in the browser and loads models from your file
system. The viewer is built on xeokit, and is bundled as an example application within the xeokit SDK. Click on
one of the links below
to
try it out, or try some of our <a href="./index.html">SDK programming examples</a> to
learn about how you
can build your own custom applications.</p>
<br><br>
<div class="row">
<div class="col-md-4 mb-4">
<a href="https://xeokit.github.io/xeokit-bim-viewer/app/index.html?projectId=RAC" class="card-link">
<div class="card">
<img class="card-img-top thumbnail"
src="./assets/images/BIMViewer_RACHouse.png"
alt="Thumbnail 2">
<div class="card-body">
<h4 class="card-title">RAC House</h4>
<p class="card-text">IFC 4.3 RAC basic sample project, exported from AutoDesk Revit 2023.
</p>
</div>
</div>
</a>
</div>
<div class="col-md-4 mb-4">
<a href="https://xeokit.github.io/xeokit-bim-viewer/app/index.html?projectId=MAP" class="card-link">
<div class="card">
<img class="card-img-top thumbnail"
src="./assets/images/BIMViewer_MAP.png"
alt="Thumbnail 2">
<div class="card-body">
<h4 class="card-title">MAP Appartment</h4>
<p class="card-text">BIM model placed at coordinates <code>[1842022, 10, -5173301]</code>, demonstrating
xeokit's support for double-precision geometry coordinates.
</p>
</div>
</div>
</a>
</div>
<div class="col-md-4 mb-4">
<a href="https://xeokit.github.io/xeokit-bim-viewer/app/index.html?projectId=Clinic" class="card-link">
<div class="card">
<img class="card-img-top thumbnail"
src="./assets/images/BIMViewer_Clinic.png"
alt="Thumbnail 2">
<div class="card-body">
<h4 class="card-title">Medical Clinic</h4>
<p class="card-text">Federated IFC 4.3 BIM model with architectural, structural, electrical, plumbing and HVAC aspects.
</p>
</div>
</div>
</a>
</div>
<div class="col-md-4 mb-4">
<a href="https://xeokit.github.io/xeokit-bim-viewer/app/index.html?projectId=Karhumaki&tab=storeys" class="card-link">
<div class="card">
<img class="card-img-top thumbnail" src="./assets/images/BIMViewer_Karhumaki.png"
alt="Thumbnail 3">
<div class="card-body">
<h4 class="card-title">Karhumaki Bridge</h4>
<p class="card-text">BIM model, loaded in one shot from multiple files created
using our import pipeline's automatic model splitting feature,
which allows us to load bigger models into the Browser.</p>
</div>
</div>
</a>
</div>
<div class="col-md-4 mb-4">
<a href="https://xeokit.github.io/xeokit-bim-viewer/app/index.html?projectId=RevitSamples" class="card-link">
<div class="card">
<img class="card-img-top thumbnail"
src="./assets/images/BIMViewer_RAC.png" alt="Thumbnail 2">
<div class="card-body">
<h4 class="card-title">Revit IFC Models</h4>
<p class="card-text">The RAC and RME example models, exported from Revit. Demonstrates property sets, which
may be inspected in the viewer.</p>
</div>
</div>
</a>
</div>
<div class="col-md-4 mb-4">
<a href="https://xeokit.github.io/xeokit-bim-viewer/app/index.html?projectId=WestRiversideHospital&tab=storeys" class="card-link">
<div class="card">
<img class="card-img-top thumbnail" src="./assets/images/BIMViewer_WestRiversideHospital.png"
alt="Thumbnail 2">
<div class="card-body">
<h4 class="card-title">West Riverside Hospital</h4>
<p class="card-text">West River Side Hospital federated BIM model - seven models: air
conditioning,
plumbing, electrical, alarms, sprinklers, structure and architecture.</p>
</div>
</div>
</a>
</div>
<div class="col-md-4 mb-4">
<a href="https://xeokit.github.io/xeokit-bim-viewer/app/index.html?projectId=OTCConferenceCenter&tab=storeys" class="card-link">
<div class="card">
<img class="card-img-top thumbnail" src="./assets/images/BIMViewer_OTCConferenceCenter.png"
alt="Thumbnail 1">
<div class="card-body">
<h4 class="card-title">OTC Conference Center</h4>
<p class="card-text">IFC 2x3 OTC Conference Center model.</p>
</div>
</div>
</a>
</div>
<div class="col-md-4 mb-4">
<a href="https://xeokit.github.io/xeokit-bim-viewer/app/index.html?projectId=HolterTower&tab=storeys" class="card-link">
<div class="card">
<img class="card-img-top thumbnail" src="./assets/images/BIMViewer_HolterTower.png"
alt="Thumbnail 3">
<div class="card-body">
<h4 class="card-title">Holter Tower</h4>
<p class="card-text">IFC 4 Holter Tower BIM model.</p>
</div>
</div>
</a>
</div>
<div class="col-md-4 mb-4">
<a href="https://xeokit.github.io/xeokit-model-conversion-tests/las-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/las/&projectId=samples&modelId=laman_mahkota" class="card-link">
<div class="card">
<img class="card-img-top thumbnail" src="./assets/images/BIMViewer_LamanMahkota.png"
alt="Thumbnail 3">
<div class="card-body">
<h4 class="card-title">Laman Mahkota LiDAR Scan</h4>
<p class="card-text">Laman Mahkota LiDAR scan loaded from XKT, pre-converted from LAS point cloud.</p>
</div>
</div>
</a>
</div>
<div class="col-md-4 mb-4">
<a href="https://xeokit.github.io/xeokit-model-conversion-tests/las-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/las/&projectId=samples&modelId=Africa_Palace" class="card-link">
<div class="card">
<img class="card-img-top thumbnail" src="./assets/images/BIMViewer_AfricaPalace.png"
alt="Thumbnail 3">
<div class="card-body">
<h4 class="card-title">Africa Palace LiDAR Scan</h4>
<p class="card-text">Africa Palace LiDAR scan loaded from XKT, pre-converted from LAS point cloud.</p>
</div>
</div>
</a>
</div>
</div>
</div>
<!-- Include Bootstrap JS and jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>