zhoufanglu opened a new issue #14493: URL: https://github.com/apache/echarts/issues/14493
### Version 4.9.0 ### Reproduction link >我想要的动画效果如下 [https://www.makeapie.com/editor.html?c=xByLjqtaLz](https://www.makeapie.com/editor.html?c=xByLjqtaLz) ### Steps to reproduce 我从官方demo中拷贝了这串代码,大概知道是动画的事件 ```js zoomAnimation() { var count = null; var zoom = per=>{ if(!count) count = per; count = count per; console.log('----') console.log(222, per,count) this.charts.setOption({ geo: { zoom: count } }); if(count < 1) window.requestAnimationFrame(function(){ zoom(0.2); }); }; window.requestAnimationFrame(function(){ zoom(0.2); }); }, ``` 我是这么使用的 在vue中 ```js this.charts.setOption(option) //图表对象创建后 ,我调用了这个事件 this.zoomAnimation() //动画效果没生效 ``` ### What is expected? 希望地图动画效果能出现 这是您们官方的一个[demo](https://www.makeapie.com/editor.html?c=xByLjqtaLz) ### What is actually happening? 动画不生效 <!-- This issue is generated by echarts-issue-helper. DO NOT REMOVE --> ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
