Skip To Content
ArcGIS Developer
Dashboard

Report Feature

The Report Feature widget enables you to collect and manage data quality feedback from users of your web app. Users can report existing features from the map that are in error or require additional review. They can also identify missing features by sketching them on the map. Feedback is stored in your geodatabase as a reviewer result where it is assessed and managed through a defined life cycle workflow.

Configurable attributes

The following table describes the configurable attributes of the Report Feature widget.

AttributeDescription

layers

Object[]. There is no default. The properties of the array item are as follows:

  • label—String. Name of the layer.
  • id—String. ID of the layer in the web map.
  • alias—String. Alias name of the layer.
  • show—Boolean. Indicates if the layer is visible in the widget.
  • layerType—String. Identifies whether the layer is a feature layer from a feature service or map service.
  • url—String. The layer URL.

drsUrl

String. The URL of the Data Reviewer service.

sessionId

Number. The default is 1. The reviewer result is written to the session ID set here.

includeReportedBy

String. The default value is logon. Defines how the user reporting the feature is tracked. Available values are logon, default, and user. Logon means the current logged-in user name will be saved. Default means a default name can be set in the configuration. User means the end user will enter a name for the reported feature by field in the widget.

defaultUserName

String. The default value is "". If the default value is used for the includeReportedBy attribute, the default name can be set here.

Example

{
  "layers": [
    {
      "label": "DataReviewer_AddressDataManagement - Facilities - Parks",
      "id": "DataReviewer_AddressDataManagement_3201",
      "alias": "DataReviewer_AddressDataManagement - Facilities - Parks",
      "show": true,
      "layerType": "ArcGISFeatureLayer",
      "url": "http://services3.arcgis.com/NAtujcNttU5clhmX/arcgis/rest/services/DataReviewer_AddressDataManagement/FeatureServer/9"
    },
    {
      "label": "DataReviewer_AddressDataManagement - Facilities - Points",
      "id": "DataReviewer_AddressDataManagement_8753",
      "alias": "Facilities - Points",
      "show": true,
      "layerType": "ArcGISFeatureLayer",
      "url": "http://services3.arcgis.com/NAtujcNttU5clhmX/arcgis/rest/services/DataReviewer_AddressDataManagement/FeatureServer/7"
    },
  ],
  "drsUrl": "http://datareviewer.arcgisonline.com/arcgis/rest/services/Samples/reviewerWriteResults/MapServer/exts/DataReviewerServer",
  "sessionID": 1,
  "includeReportedBy": "logon",
  "defaultUserName": ""
}