Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace ArcGISTypes

Index

Type aliases

ArcGISGraphic: Record<string, unknown>

A JSON representation of an ArcGIS Graphic. Graphics will be autocast at Form runtime using Graphic.fromJSON (see: https://developers.arcgis.com/javascript/latest/api-reference/esri-Graphic.html#fromJSON).

For information on what properties can be included, refer to the ArcGIS documentation here: https://developers.arcgis.com/javascript/latest/api-reference/esri-Graphic.html

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

  • Optional drawingLayer?: ArcGISGraphic[]

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

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

    Non-interactive snapshot images of the map

  • Optional 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.

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