UNPKG

vue3-openlayers

Version:
19 lines (17 loc) 1.58 kB
import { Options } from 'ol-ext/featureanimation/FeatureAnimation'; import { default as Blink, Options as BlinkOptions } from 'ol-ext/featureanimation/Blink'; import { default as Bounce, Options as BounceOptions } from 'ol-ext/featureanimation/Bounce'; import { default as Drop, Options as DropOptions } from 'ol-ext/featureanimation/Drop'; import { default as Fade, Options as FadeOptions } from 'ol-ext/featureanimation/Fade'; import { default as None } from 'ol-ext/featureanimation/None'; import { default as Null } from 'ol-ext/featureanimation/Null'; import { default as Path, Options as PathOptions } from 'ol-ext/featureanimation/Path'; import { default as Shake, Options as ShakeOptions } from 'ol-ext/featureanimation/Shake'; import { default as Show } from 'ol-ext/featureanimation/Show'; import { default as Slide, Options as SlideOptions } from 'ol-ext/featureanimation/Slide'; import { default as Teleport } from 'ol-ext/featureanimation/Teleport'; import { default as Throw, Options as ThrowOptions } from 'ol-ext/featureanimation/Throw'; import { default as Zoom, Options as ZoomOptions } from 'ol-ext/featureanimation/Zoom'; import { default as ZoomOut, Options as ZoomOutOptions } from 'ol-ext/featureanimation/ZoomOut'; export type FeatureAnimation = Blink | Bounce | Drop | Fade | None | Null | Path | Shake | Show | Slide | Teleport | Throw | Zoom | ZoomOut; export type FeatureAnimationOptions = Options | BlinkOptions | BounceOptions | DropOptions | FadeOptions | PathOptions | ShakeOptions | SlideOptions | ThrowOptions | ZoomOptions | ZoomOutOptions;