huiyan-fe / mapv

a library of geography visualization-地理信息可视化库
http://mapv.baidu.com
BSD 3-Clause "New" or "Revised" License
2.58k stars 786 forks source link

feat: 增加arc动画往返&动画循环次数&动画停留时间功能 #249

Closed proto1994 closed 3 years ago

proto1994 commented 3 years ago

因业务需求,需要在迁徙动画中增加往返和动画次数功能

 this.animationLayer.update({
        options: {
          animateTime: 100,
          fillStyle: '#0087f6',
          size: 3,
          isRound: true, // 是否往返
          times: 2, // 动画次数
        },
 });

效果入下视频所示

https://user-images.githubusercontent.com/12874077/104403735-22a9b480-5594-11eb-8e17-04183d383ad7.mp4

proto1994 commented 3 years ago

多谢指出代码中的不足

优化了下代码,并且增加动画循环后停留时长

 this.animationLayer.update({
        options: {
          animateTime: 100,
          fillStyle: '#0087f6',
          size: 3,
          isRound: true, // 是否往返
          times: 2, // 动画次数
          stayTime: 2000, // 动画循环完一次后 停留两秒在继续
        },
 });