Issue in adding 3d Tilesets

Hi there,

I am trying to add 3d tilesets data using the following URL: https://tiles.arcgis.com/tiles/N82JbI5EYtAkuUKU/arcgis/rest/services/Stuttgart/3DTilesServer/tileset.json

I am using openlayers for 2D and Cesium for 3D.

const t = Cesium.Cesium3DTileset.fromUrl('https://tiles.arcgis.com/tiles/N82JbI5EYtAkuUKU/arcgis/rest/services/Stuttgart/3DTilesServer/tileset.json');
            t.then(resp => {
                3dMap.getCesiumScene().primitives.add(resp);
                3dMap.zoomTo(resp);
            });

This is throwing the error:
image

Any help is appreciated.
Thanks in advance!

Hi,

I think something outside of the scope of CesiumJS is going amiss. To illustrate, I can load the linked tileset in a standalone example without error.

I’m not sure what API uses 3dMap.getCesiumScene(), but that doesn’t appear to be CesiumJS directly.