Hi there,
I have a 3d ESRI polygon layer (geojson). I would like to display this in Cesium at it’s true elevation (not clamped to ground). The effect I am looking for is to model floo plain data in 3d.
Here is the code I have started with:
const polygonLayerName = "Flood Plain";
const polygonLayerURL = "https://services.arcgis.com/bDAhvQYMG4WL8O5o/arcgis/rest/services/Charleston_SLR_2080_WaterSurface3D/FeatureServer/64";
arcgisRest.queryFeatures({
url: polygonLayerURL,
authentication,
f:"geojson"
}).then((response) => {
const data = Cesium.GeoJsonDataSource.load(response,{
//clampToGround:true,
})
viewer.dataSources.add(data);
});
Is this possible?
I would like to see the water level clipping 3d features.
Thanks in advance,
Mapper99
PS The polygons seems to “float” a specific distance above the Google Maps 3d tiles surface: