UNPKG

mapillary-js

Version:

A WebGL interactive street imagery library

27 lines (25 loc) 618 B
/** * Enumeration for transition mode * @enum {number} * @readonly * @description Modes for specifying how transitions * between images are performed. */ export enum TransitionMode { /** * Default transitions. * * @description The viewer dynamically determines * whether transitions should be performed with or * without motion and blending for each transition * based on the underlying data. */ Default, /** * Instantaneous transitions. * * @description All transitions are performed * without motion or blending. */ Instantaneous, }