铯地球实体路径质量

时间:2018-08-30 09:33:48

标签: javascript cesium

我已经使用Cesium Earth库开发了一个应用程序。

问题是,绘制的线(实体路径)的质量很低,不平滑。如何做得更好?

  viewer = new Cesium.Viewer('cesiumContainer', {
    imageryProvider: false,
    shadows:true,
    skyAtmosphere: false,
    geocoder: false,
    shouldAnimate:true,
    clockViewModel: new Cesium.ClockViewModel(clock),
    imageryProviderViewModels: imageryViewModels,
    requestRenderMode : true
  });

entity[i] = viewer.entities.add({              
            path:{
               leadTime:leadTime,
               trailTime:trailTime,
               width:1.5,
               material: color,
               resolution:10
            }
});

satellite[id].position.setInterpolationOptions({
         interpolationDegree : 10,
         interpolationAlgorithm : Cesium.HermitePolynomialApproximation 
});

enter image description here

1 个答案:

答案 0 :(得分:0)

请考虑在视图中添加抗锯齿通道,并可能使容器div的尺寸是屏幕上实际尺寸的两倍(使用CSS将其缩放为一半)。我有一个类似的场景,但是它位于three.js中,这里:https://ccnmtl.github.io/astro-interactives/sun-motion-simulator/源代码在这里:https://github.com/ccnmtl/astro-interactives/blob/master/sun-motion-simulator/src/HorizonView.jsx