Loading...

Note: Support for 3D on mobile devices may vary, view the system requirements for more information.

This sample demonstrates how to add an Editor widget to a web application. This widget is useful as it provides an out-of-the-box experience to help streamline the editing experience within an application. This sample makes use of the Editor widget by providing both create and update workflow functionality for the map's editable layers.

For a more basic sample, see Edit features with the Editor widget.

How it works

The widget automatically recognizes if there are any editable feature layer(s) within the map. If there are, the layer or layers will display within the widget. Based on the editing functionality set on the feature layer, you can update and/or create new features. These two workflows can be adjusted to what is needed within the application. For example, let's say you have a feature layer that has full editing capabilities set on it. But for one specific application, you may not need or want the editor to create any new features. You can restrict this by setting addEnabled: false in the layerInfos property. This will disable feature creation.

In addition to this, it is also possible to limit what fields are displayed and how you wish to display them. You can do this by setting the fieldConfig[] property within the layerInfos property. This sample makes use of this since there are only a few attribute fields that need to be updated.

// Loop through webmap layers and set an EditConfig for each
view.map.layers.forEach(function(layer) {
  if (layer.title === "Police Routes") {
    editConfigPoliceLayer = {
      layer: layer,
      // Set it so that only one field displays within the form
      fieldConfig: [
        {
          name: "PatrolType",
          label: "Patrol Type"
        }
      ]
    };
  } else {
    // Specify a few of the fields to edit within the form
    editConfigCrimeLayer = {
      layer: layer,
      fieldConfig: [
        {
          name: "fulladdr",
          label: "Full Address"
        },
        {
          name: "neighborhood",
          label: "Neighborhood"
        },
        {
          name: "ucrdesc",
          label: "UCR Description"
        },
        {
          name: "crimecategory",
          label: "Category"
        },
        {
          name: "casestatus",
          label: "Status"
        }
      ]
    };
  }
});

The Editor widget encapsulates the functionality seen in the FeatureTemplates, FeatureForm, and Sketch widgets. It is possible to customize some of these widgets' properties by setting the supportingWidgetDefaults property. In addition to customizing how the fields display within the Editor, you can also customize how the default FeatureTemplates display. By default, the Editor widget shows all the layers' templates in one group. To make it easier to distinguish, this sample makes use of a custom function created to help group these templates. In this example, the default behavior of the FeatureTemplates widget is customized to work with this custom grouping function.

// Create a custom group to separate the different areas of crime.
// This function takes a 'grouping' object containing a feature template and feature layer.

function customGroup(grouping) {
  // If the layer is 'Police routes', do not group
  let groupHeading = "Police Routes";
  if (grouping.layer.title.toLowerCase() === "crime map") {
    switch (grouping.template.name) {
      case "Criminal Homicide":
      case "Rape":
      case "Robbery":
      case "Aggravated Assault":
        groupHeading = "Violent Crime";
        break;
      case "Arson":
      case "Burglary":
      case "Larceny":
      case "Motor Vehicle Theft":
        groupHeading = "Property Crime";
        break;
      default:
        groupHeading = "Quality of Life";
    }
  }
  return groupHeading;
}

Like other widgets, the Editor widget uses the same type of coding pattern, i.e. you must set the view referenced by the widget. After this, the other properties can be set as the application's requirements dictate.

let editor = new Editor({
  view: view,
  // Pass in the configurations.
  layerInfos: [editConfigCrimeLayer, editConfigPoliceLayer],
  // Override the default template behavior of the Editor widget
  supportingWidgetDefaults: {
    featureTemplates: {
      groupBy: customGroup
    }
  }
});

Sample search results

TitleSample
Loading...