-
Notifications
You must be signed in to change notification settings - Fork 1
/
core.html
48 lines (44 loc) · 1.07 KB
/
core.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>3D Tiles Batching Demo</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
* {
margin: 0;
padding: 0;
}
body {
background-color: #ccc;
color: #000;
}
a {
color: #f00;
}
#info {
background: rgba( 0, 0, 0, 0.3 );
color: white;
position: absolute;
left: 0;
padding: 5px;
font-family: monospace;
white-space: pre;
}
</style>
</head>
<body>
<script type="importmap">
{
"imports": {
"three": "./three.module.min.js",
"three/addons/": "https://unpkg.com/three@0.157.0/examples/jsm/",
"three/": "https://unpkg.com/three@0.157.0/",
"3d-tiles-renderer": "https://unpkg.com/3d-tiles-renderer@0.3.21/src/index.js"
}
}
</script>
<script src="core.js" type="module"></script>
<div id="info"></div>
</body>
</html>