I have a list of track points (latitude, longitude) using which I have created a CZML to display the data. I have used arbitrary time-interval and assigned these latitude/longitude to each interval. Now I have two questions -
Cesium version 1.2 used.
The CZML looks as below-
[
{
“id”:“document”,
“version”:“1.0”
},
{
“position”:{
“cartographicDegrees”:[
“2012-07-01T06:00:00Z”,x1,y1,0.0,
“2012-07-02T06:00:00Z”,x2,y2,0.0,
…
- When I use EllipsoidTerrainProvider then the track path along with the point indication for current time location is displayed properly. But when using the CesiumTerrainProvider as Terrain, the path is not visible. Apparently because the height component is not available and assigned as 0.0.
Is there a way to make this path visible with the default Cesium Terrain also, in absence of height values?
- How do we implement the fly-through for these points? Some information is available on http://cesiumjs.org/2012/11/30/NORAD-Tracks-Santa-Tech-Preview/ but details are still not clear.
Please suggest.