Sorry for the obvious question, but the Hello World demo does not have terrain enabled. Are you enabling it?
Either way, we don’t have a way to exaggerate terrain at this time, but it is on the roadmap.
Sorry for the obvious question, but the Hello World demo does not have terrain enabled. Are you enabling it?
Either way, we don’t have a way to exaggerate terrain at this time, but it is on the roadmap.
Thanks Matthew. My real question was, "How do I enabled it?" I figured it out, and here it is for the next newb who stumbles on this:
var viewer = new Cesium.Viewer('cesiumContainer');
var cesiumTerrainProviderMeshes = new Cesium.CesiumTerrainProvider({
url : '//assets.agi.com/stk-terrain/world',
requestWaterMask : true,
requestVertexNormals : true
});
viewer.terrainProvider = cesiumTerrainProviderMeshes;