UNPKG

vue3-openlayers

Version:
16 lines (15 loc) 346 B
import { easeOut } from "ol/easing"; import "ol-ext/featureanimation/FeatureAnimation"; const animationCommonDefaultProps = { duration: 1e3, revers: false, repeat: 0, easing: easeOut }; function useDefaults(overrides) { return { ...animationCommonDefaultProps, ...overrides }; } export { animationCommonDefaultProps, useDefaults };