Hi,
has someone experience with the REST API for 3D-Tiles.
I would like to query osm-buildings in a region (bounding box), what do I get a json-file or xml/gml with polygons or b3dm-file as answer ?
Regards
Rüdiger
Hi,
has someone experience with the REST API for 3D-Tiles.
I would like to query osm-buildings in a region (bounding box), what do I get a json-file or xml/gml with polygons or b3dm-file as answer ?
Regards
Rüdiger
Query the asset: https://api.cesium.com/v1/assets/96188/endpoint with your access token. That will get you a JSON object with the tileset URL in it. Query the url, and that’ll get you the tileset JSON, which will have a root.boundingVolume and a root.content.uri, pointing to the b3dm.
You can also do this with the boilerplate:
const tileset = await Cesium.Cesium3DTileset.fromIonAssetId(96188),
Then perform clipping operations on the tileset to narrow down the tileset spatially.