首页 / 浏览问题 / WebGIS / 问题详情
硬件反走样打开后,图层没有什么变化
3EXP 2022年10月12日
window.viewer = new Cesium.Viewer("cesiumContainer", {

        shadows: true,

        infoBox: false,

        orderIndependentTranslucency: false,

        contextOptions: {

          requestWebgl2: true,

          msaaLevel: 8, //反走样系数

          webgl: {

            alpha: true,

            antialias: true,

            premultipliedAlpha: true,

          },

        },

      });

修改massLevel值,图层边缘锯齿无明显变化
关闭重复的问题: 图层的反走样如何打开
...