@oneblink/sdk-core
    Preparing search index...

    Type Alias ArcGISWebMapElementValue

    type ArcGISWebMapElementValue = {
        drawingLayer?: ArcGISGraphic[];
        layers?: {
            graphics: ArcGISGraphic[];
            id: string;
            title: string;
            visible?: boolean;
        }[];
        snapshotImages?: FormSubmissionAttachment[];
        userInput?: ArcGISGraphic[];
        view?: { latitude: number; longitude: number; zoom: number };
    }
    Index

    Properties

    drawingLayer?: ArcGISGraphic[]

    An array of Graphics created via the drawing tool, intended for modification in lookups.

    layers?: {
        graphics: ArcGISGraphic[];
        id: string;
        title: string;
        visible?: boolean;
    }[]
    snapshotImages?: FormSubmissionAttachment[]

    Non-interactive snapshot images of the map

    userInput?: ArcGISGraphic[]

    An array of Graphics created via the drawing tool, not intended to be modified externally (ie. in lookups). To modify drawn Graphics within a lookup, use the drawingLayer property instead.

    view?: { latitude: number; longitude: number; zoom: number }