Load 3D buildings into the map

Hi all,

I’m trying to load 3D buildings into the map.

I found some demos like:

http://cesiumjs.org/WashingtonDC/

http://cesiumjs.org/2015/04/27/3D-Buildings-in-Cesium/

https://cesiumjs.org/2015/08/10/Introducing-3D-Tiles/

where it says

This data will be optimized for Cesium and hosted by AGI similar to how AGI hosts the STK World Terrain dataset. It will be free for use in commercial and non-commercial Cesium apps given a free development key and reasonable usage.
also the loading methods:

var viewer = new Cesium.Viewer('cesiumContainer');
var tileset = viewer.scene.primitives.add(new Cesium.Cesium3DTileset({
    url : '/path/to/3d/tileset'
}));

But I cannot find where the dataset host by AGI is.

Can anyone tell me how to load the 3G buildingg inside the map? or like what the github repo GitHub - CesiumGS/3d-tiles: Specification for streaming massive heterogeneous 3D geospatial datasets 🌎 says, things are not ready and I still have to wait?

Thanks in advance!

Hi,

There is some simple sample data in the Specs directory of the 3d-tiles branch:

https://github.com/AnalyticalGraphicsInc/cesium/tree/3d-tiles/Specs/Data/Cesium3DTiles

We are also working on a Sandcastle example with simple sample data. It is one of the last items on the cleanup roadmap:

3d-tiles branch cleanup · Issue #3177 · CesiumGS/cesium · GitHub

Once the format stabilizes a bit more, we’ll make the sample CyberCity3D data available that is mentioned in that blog post.

Patrick

Hi Cozzi,

Thanks for your reply.

I will check out the 3d-tile branch and see how it works.