Hi @sam.rothstein
I am trying to load a 3D Tileset using a provided function of Cesium as belows.
Summary
var tileset = new Cesium.Cesium3DTileset({
url: “https://xdworld.vworld.kr/TDServer/services/facility_LOD4/Seoul-202107/Jung-gu/tileset.json”,
//https://xdworld.vworld.kr/TDServer/services/facility_LOD4/vworld_3d_facility.json
});
tileset.readyPromise.then(function (tileset){
Viewer.scene.primitives.add(tileset);
}).otherwise(function (error){
console.log(error);
});
Some 3D tiles has a texture, But almost texture didn’t displayed as belows.
Structure of 3D Tileset as belows from root.
Summary
“root”:
{
“boundingVolume”:{“region”:[2.2158979363822473,0.6552726683313002,2.217035506655808,0.6557577620404037,10.05119991279948,279.9920043948327]},
“geometricError”:82.0,
“refine”:“ADD”,
“content”:null,
“children”:[
{
“boundingVolume”:{“region”:[2.2158979363822473,0.6553904894366749,2.2164505290151104,0.6555489668258889,23.565156935197713,279.9920043948327]},
“geometricError”:40.0,
“refine”:“REPLACE”,
“content”:null,
“children”:[
{
“boundingVolume”:{“region”:[2.2159623905372396,0.6554351661077936,2.216153353091036,0.6554794716750965,26.353885649693552,176.90185546797468]},
“geometricError”:20.0,
“refine”:“REPLACE”,
“content”:null,
“children”:[
{
“boundingVolume”:{“region”:[2.2159623905372396,0.6554471317600152,2.2160111200965504,0.6554754166078003,29.28800010610775,96.39745330912893]},
“geometricError”:10.0,
“refine”:“REPLACE”,
“content”:{“uri”:“B_0_8_4.b3dm”},
“children”:[
{
“boundingVolume”:{“region”:[2.2159623905372396,0.6554471345118262,2.215991667577641,0.655473789578686,34.68430328368638,96.39745330859027]},
“geometricError”:5.0,
“refine”:“REPLACE”,
“content”:{“uri”:“B_1_10_4.b3dm”},
“children”:[
{
“boundingVolume”:{“region”:[2.2159660570390636,0.6554471362581817,2.2159780675761014,0.6554567910624978,36.001819611162794,93.6025390625474]},
“geometricError”:0.0,
“refine”:“REPLACE”,
“content”:{“uri”:“B_2_10_4.b3dm”},
“children”:
},
…
Thank you.