Cesium 解决绘制图像中锯齿问题

	// 这里解决锯齿
	viewer.scene.fxaa = false;
	viewer.scene.postProcessStages.fxaa.enabled = true;
	if (Cesium.FeatureDetection.supportsImageRenderingPixelated()) { // 判断是否支持图像渲染像素化处理
		viewer.resolutionScale = window.devicePixelRatio;
	}
原文地址:https://www.cnblogs.com/hustshu/p/15621499.html