MarkerTour: Tour & {
    currentStep?: number;
    duration?: number;
    goto?: ((n: number) => void);
    image?: Models.Assets.Image;
    initialStep?: number;
    isSerialTour?: boolean;
    keepLastStep?: boolean;
    next?: (() => void);
    noControls?: boolean;
    prev?: (() => void);
    printChapters?: boolean;
    scrollable?: boolean;
    stepInfo?: MarkerTourStepInfo[];
    steps: string[];
}

A Micrio marker tour -- a sequence of markers, which the user can navigate through. This is created in the Micrio editor.

Type declaration

  • OptionalcurrentStep?: number

    Current tour step getter

  • Optionalduration?: number

    Internally calculated total duration, sum of all step durations

  • Optionalgoto?: ((n: number) => void)

    Go to step -- for running tours

      • (n): void
      • Parameters

        • n: number

        Returns void

  • Optionalimage?: Models.Assets.Image

    Optional tour image asset

  • OptionalinitialStep?: number

    Start on this tour step

  • OptionalisSerialTour?: boolean

    Chapter-based multi-video serial tour

  • OptionalkeepLastStep?: boolean

    Don't reset view when tour ends

  • Optionalnext?: (() => void)

    Go to next step -- for running tours

      • (): void
      • Returns void

  • OptionalnoControls?: boolean

    No user controls

  • Optionalprev?: (() => void)

    Go to prev step -- for running tours

      • (): void
      • Returns void

  • OptionalprintChapters?: boolean

    Print the chapters in the interface

  • Optionalscrollable?: boolean

    This is a scrolling tour

  • OptionalstepInfo?: MarkerTourStepInfo[]

    Internally generated propagated step data by Micrio

  • steps: string[]

    Tour steps