在上一篇 介绍 Entity 样式设置的文章中,设置颜色渐变中使用到了 ColorMaterialProperty,这篇会做一个详细介绍,在Entity属性怎样使用Property机制
初识 Property
-
这里以 PolygonGraphics 为例,从官方api中可以看到,在option属性中,类型为Property的均可以用Propert机制来设置
-
颜色 通过给 material 赋值 color 对象值既可以
//内置颜色 polygon.material: Cesium.Color.RED.withAlpha(0.5), //css颜色 //cssColor:值可以是 #ffccdd, rgb(255,255,255),rgb(255,0,255,0.5) polygon.material: Cesium.Color.fromCssColorString(cssColor, result)
-
通过 ColorMaterialProperty设置动态的颜色