SourceTermAnalysisSystem_vue/node_modules/ol-ext/featureanimation/Null.js
2026-05-15 10:22:44 +08:00

19 lines
422 B
JavaScript

/*
Copyright (c) 2016 Jean-Marc VIGLINO,
released under the CeCILL license (http://www.cecill.info/).
*/
import ol_featureAnimation from './FeatureAnimation.js'
/** Do nothing
* @constructor
* @extends {ol_featureAnimation}
*/
var ol_featureAnimation_Null = class olfeatureAnimationNull extends ol_featureAnimation {
constructor() {
super({ duration:0 });
}
};
export default ol_featureAnimation_Null