A presentation consists of multiple slides, where each slide is a specific view into the web scene.

See https://developers.arcgis.com/web-map-specification/objects/presentation/ https://developers.arcgis.com/web-scene-specification/objects/presentation/.

interface PresentationJson {
    displayTimeSlider?: boolean;
    showLegend?: boolean;
    slideAdvancementInterval?: number;
    slides?: SlideJson[];
    useTimeExtentOfSlide?: boolean;
}

Properties

displayTimeSlider?: boolean

Indicates whether to display the time slider (if accessible). [WebMap only].

showLegend?: boolean

Indicates whether to display a legend on all slides. [WebMap only].

slideAdvancementInterval?: number

Number of seconds to show slide before proceeding to the next slide. [WebMap only].

slides?: SlideJson[]

An array of slides that bookmark viewpoints, visible layers, and other settings previously defined in a WebScene.

useTimeExtentOfSlide?: boolean

Indicates whether to use the time extent (if applicable) of a slide. [WebMap only].