interface MarkerLaneConfig {
    axiosConfig?: AxiosRequestConfig<any>;
    description?: string;
    downsamplePeriod?: number;
    downsampleStrategy?: DownsampleStrategy;
    id?: string;
    layoutEasingDuration?: number;
    markerCreateFn?: ((marker: MarkerVttCue, index: number) => Marker);
    markerProcessFn?: ((marker: Marker, index: number) => void);
    minimized?: boolean;
    style: MarkerLaneStyle;
    vttFile?: MarkerVttFile;
    vttUrl?: string;
}

Hierarchy

Properties

axiosConfig?: AxiosRequestConfig<any>
description?: string
downsamplePeriod?: number

Period for downsampling in milliseconds

downsampleStrategy?: DownsampleStrategy

Strategy for downsampling (supported values: none, drop, min, max, and avg)

id?: string
layoutEasingDuration?: number
markerCreateFn?: ((marker: MarkerVttCue, index: number) => Marker)
markerProcessFn?: ((marker: Marker, index: number) => void)
minimized?: boolean
vttFile?: MarkerVttFile
vttUrl?: string