AnimationMaterialProperty

流动纹理线

Name Type Description
options Object options具有以下属性的对象:
Name Type Default Description
color Cesium.Color 可选的 忽略图片的rgb,强制设置其颜色。Alpha不受影响
speed Number 1 可选的 循环一次的速度,速度为负值的时候,是翻转
image String 可选的 材质的图片,一般为箭头等
repeat Object 可选的 材质图片的重复次数
axisY Boolean false 可选的 是否旋转Y轴
Example:
viewer.entities.add({
 name: 'PolylineTrail',
 polyline: {
     positions: Cesium.Cartesian3.fromDegreesArrayHeights([lon, lat, 2500,
         lon + 10, lat, 2500,
         lon + 10, lat + 10, 2500,
     ]),
     width: 15,
     material: new TS.AnimationMaterialProperty({
         // color: Cesium.Color.ORANGE,
         duration: 3000,
         image: "./img/flow.png",
         // repeat:new Cesium.Cartesian2(30,1),
			axisY: true
         })
     }
 });

Members

是否旋转Y轴
颜色
强制变更的颜色
图片重复级别
持续时间