Can I Use Canvas as SingleTileImageryProvider source with animation?

example http://cesiumjs.org/Cesium/Apps/Sandcastle/index.html?src=Video.html
Canvas HtmlElement as imagelayer ,can draw image animation?

Hello,

SingleTimeIMageryProvider does not support a video material, but you could try using a Rectangle instead.

Here is an example:

var viewer = new Cesium.Viewer(‘cesiumContainer’, {showRenderLoopErrors : false});

var videoElement = document.getElementById(‘trailer’);

var rectangle = viewer.entities.add({
rectangle : {
coordinates : Cesium.Rectangle.fromDegrees(-100.0, 30.0, -90.0, 40.0),
material : videoElement
}
});

viewer.zoomTo(rectangle);

``

Best,

Hannah

thanks very much.

在 2016年3月7日星期一 UTC+8下午11:52:51,Hannah Pinkos写道:

I Test this case,

http://dataxiu.com/xiu/index.htm?id=750733

canvas material

but show as image ,not animation.

在 2016年3月7日星期一 UTC+8下午11:52:51,Hannah Pinkos写道: