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

Type declaration

  • OptionaldrawingLayer?: ArcGISGraphic[]

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

  • Optionallayers?: {
        graphics: ArcGISGraphic[];
        id: string;
        title: string;
        visible?: boolean;
    }[]
  • OptionalsnapshotImages?: FormSubmissionAttachment[]

    Non-interactive snapshot images of the map

  • OptionaluserInput?: 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.

  • Optionalview?: {
        latitude: number;
        longitude: number;
        zoom: number;
    }
    • latitude: number
    • longitude: number
    • zoom: number