32 lines
849 B
JavaScript
32 lines
849 B
JavaScript
/*
|
|
Copyright (c) 2016 Jean-Marc VIGLINO,
|
|
released under the CeCILL license (http://www.cecill.info/).
|
|
|
|
*/
|
|
|
|
import ol_featureAnimation from './FeatureAnimation.js'
|
|
|
|
/** Blink a feature
|
|
* @constructor
|
|
* @extends {ol_featureAnimation}
|
|
* @param {ol_featureAnimationOptions} options
|
|
* @param {Number} options.nb number of blink, default 10
|
|
*/
|
|
var ol_featureAnimation_Blink = class olfeatureAnimationBlink extends ol_featureAnimation {
|
|
constructor(options) {
|
|
super(options);
|
|
this.set('nb', options.nb || 10);
|
|
}
|
|
/** Animate: Show or hide feature depending on the laptimes
|
|
* @param {ol_featureAnimationEvent} e
|
|
*/
|
|
animate(e) {
|
|
if (!(Math.round(this.easing_(e.elapsed) * this.get('nb')) % 2)) {
|
|
this.drawGeom_(e, e.geom);
|
|
}
|
|
return (e.time <= this.duration_);
|
|
}
|
|
}
|
|
|
|
export default ol_featureAnimation_Blink
|