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
| {
| "asset": {
| "version": "1.0"
| },
| "properties": {
| "id": {
| "minimum": 0,
| "maximum": 9
| },
| "Longitude": {
| "minimum": -1.3196959060375169,
| "maximum": -1.3196607462778132
| },
| "Latitude": {
| "minimum": 0.6988590050687061,
| "maximum": 0.6988864387845588
| },
| "Height": {
| "minimum": 6.1022464875131845,
| "maximum": 20
| }
| },
| "extensionsRequired": ["3DTILES_multiple_contents"],
| "extensionsUsed": ["3DTILES_multiple_contents", "3DTILES_metadata"],
| "extensions": {
| "3DTILES_metadata": {
| "schema": {
| "classes": {
| "layer": {
| "properties": {
| "color": {
| "type": "VEC3",
| "componentType": "UINT8"
| },
| "priority": {
| "componentType": "UINT8"
| },
| "isInstanced": {
| "componentType": "BOOLEAN"
| }
| }
| }
| }
| },
| "groups": {
| "buildings": {
| "class": "layer",
| "properties": {
| "color": [255, 127, 0],
| "priority": 10,
| "isInstanced": false
| }
| },
| "cubes": {
| "class": "layer",
| "properties": {
| "color": [0, 255, 127],
| "priority": 5,
| "isInstanced": true
| }
| }
| }
| }
| },
| "geometricError": 70,
| "root": {
| "refine": "ADD",
| "boundingVolume": {
| "region": [
| -1.3197004795898053,
| 0.6988582109,
| -1.3196595204101946,
| 0.6988897891,
| 0,
| 30
| ]
| },
| "geometricError": 0,
| "extensions": {
| "3DTILES_multiple_contents": {
| "content": [
| {
| "uri": "batched.b3dm",
| "extensions": {
| "3DTILES_metadata": {
| "group": "buildings"
| }
| }
| },
| {
| "uri": "instanced.i3dm",
| "extensions": {
| "3DTILES_metadata": {
| "group": "cubes"
| }
| }
| }
| ]
| }
| }
| }
| }
|
|