Howdy,
Currently I have a piece of code where I need to draw a line on the terrain (with known 3D height information), as well as scale when the user zooms in and out.
Corridor works for following the terrain.
corridor: {
width: 5.0,
material: Cesium.Color.RED,
positions: Cesium.Cartesian3.fromDegreesArray([lon1,lat1,lon2,lat2])
}
But I can't find a way to scale it.
On the otherhand, Polyline can scale easily, but I can't find a way to let it follow the terrain.
Is this situation possible?