Currently, I am trying to implement a simplified version of this example: https://github.com/AnalyticalGraphicsInc/cesium/tree/master/Specs/Data/Cesium3DTiles/Tilesets/TilesetEmptyRoot
When I load the tileset below, it shows a bounding box which remains empty.
{
"asset": {
"version": "1.0"
},
"properties": {},
"geometricError": 100,
"root": {
"refine": "ADD",
"boundingVolume": {
"region": [
0.04846703948913789,
0.8844762199784251,
0.04967613940229841,
0.8852770039786942,
0,
50.00000000037737
]
},
"geometricError": 100
},
"children": [{
"boundingVolume": {
"region": [
0.04846703948913789,
0.8844762199784251,
0.04967613940229841,
0.8852770039786942,
0,
50.00000000037737
]
},
"geometricError": 0,
"content": {
"uri": "a.b3dm"
}
}]
}
However, if I add the content uri to the root as well, it does show the building (see below). Any pointers as to what I am doing wrong? Thanks in advance.
{
"asset": {
"version": "1.0"
},
"properties": {},
"geometricError": 100,
"root": {
"refine": "ADD",
"boundingVolume": {
"region": [
0.04846703948913789,
0.8844762199784251,
0.04967613940229841,
0.8852770039786942,
0,
50.00000000037737
]
},
"geometricError": 100,
"content": {
"uri": "a.b3dm"
}
},
"children": [{
"boundingVolume": {
"region": [
0.04846703948913789,
0.8844762199784251,
0.04967613940229841,
0.8852770039786942,
0,
50.00000000037737
]
},
"geometricError": 0,
"content": {
"uri": "a.b3dm"
}
}]
}