如何使用openlayers3为Image png设置动画

时间:2017-08-29 01:44:48

标签: javascript html5 image openlayers-3

我需要用openlayers-3实现一个函数。 描述:有一系列图像.png。我需要像动画一样播放它们。我将图像源设置为ImageStatic,但是当我设置当前图像可见为false时,它不起作用。可见属性似乎不起作用。 代码:



{{1}}




1 个答案:

答案 0 :(得分:1)

map.layers [1]是一个组,用于获取图像图层​​:

var layers = map.getLayers().getArray()[1].getLayers().getArray();

你也可以做真实的'直接渲染到画布的动画:

http://openlayers.org/en/latest/examples/feature-move-animation.html http://openlayers.org/en/latest/examples/flight-animation.html