I am interested in the current status of Clamp-to-Ground. I know it is a priority and there's been a lot of progress. But I haven't been able to keep straight which types of primitives currently use this feature.
Billboards
Points
Lines
Polygons
Models
Ellipse
I am looking forward to move my model-heavy CZML dataSource from ellipsoid to STK world mesh (e.g. http://www.geo-animate.com/category/world-war-ii/battle-for-normandy-1944/).
Cheers, erik hellstedt
var czml = [{
"id" : "document",
"name" : "CZML Geometries: Polygon",
"version" : "1.0"
}, {
"id" : "redPolygon",
"name" : "Red polygon on surface",
"polygon" : {
"positions" : {
"cartographicDegrees" : [
-119.5644, 37.7582, 0,
-119.5593, 37.7382, 0,
-119.5284, 37.7373, 0,
-119.5317, 37.7642, 0
]
},
"material" : {
"solidColor" : {
"color" : {
"rgba" : [255, 0, 0, 124]
}
}
}
}
}];
var viewer = new Cesium.Viewer('cesiumContainer');
var cesiumTerrainProviderMeshes = new Cesium.CesiumTerrainProvider({
url : 'https://assets.agi.com/stk-terrain/world',
requestWaterMask : true,
requestVertexNormals : true
});
viewer.terrainProvider = cesiumTerrainProviderMeshes;
var dataSource = Cesium.CzmlDataSource.load(czml);
viewer.dataSources.add(dataSource);
viewer.zoomTo(dataSource);--
You received this message because you are subscribed to a topic in the Google Groups "cesium-dev" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/cesium-dev/M_ZDcDlNL10/unsubscribe.
To unsubscribe from this group and all its topics, send an email to cesium-dev+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.