Skip To Content

Deploying redline routes

The redline is a markup feature in the geodatabase that stores information about the proposed changes in the linear referencing system (LRS). ArcGIS Event Editor web app can propose changes to the LRS through the Redline widget using redline routes. LRS editors can then apply the redline as an official change to the LRS using Roads and Highways Desktop. The Redline Routes widget can be used to create, edit, and attach files to the redline routes. You can preconfigure redline activity types such as create route, extend route, realign route, realign concurrent route, calibrate route, retire route, reassign route, and so on.

For more information on redline routes, see the following:

To enable web redlining of routes using Event Editor, you should author a web map using ArcMap and include a redline feature class. You can achieve this in one of the following ways:

  • Include the redline layer in the same map service along with your routes and event layers.
  • Create a separate map service for the redline.
The advantage of publishing a separate map service for the redline layer is that the feature access will only be exposed for the redline layer, not for other layers such as network and event layers. You can make the decision based on your security practices.

Caution:

The redline layer name must match the feature class name, including the prefix. By default, when a layer is added to a map, the alias is used; however, the web layer name needs to match the feature class name.

For detailed Event Editor web map authoring and configuration instructions, see the following:

Note:

In the redline feature class, those attribute fields for which the Event Editor web app user may be unable to provide data must be made nullable. Doing so will make the data content for those fields optional.

The web app can be configured to automatically detect the redline layer using the name of any operational layers that you have configured in the web map. The redline layer name must have the same as the redline feature class name (including prefix) to autodetect the redline layer.

Items to confirm before you start

Before you deploy redline route capability in Event Editor, ensure the following requirements are met:

Enabling feature access and linear referencing capabilities

  • If you're including the redline layer in the same map service as your network and event layers, make sure to enable the Feature Access and Linear Referencing capabilities when publishing the map service using ArcGIS Server.

    Enabling map services

  • If you're publishing the redline layer separately, make sure to enable only the Feature Access capability when publishing the map service using ArcGIS Server.
Note:

Event Editor supports Esri web maps, which can have only one linear referencing-capable map service.

Disabling m- and z-values for the redline feature class

The redline feature class should have the capability to store disabled m- and z-values. To validate this, perform the following steps:

  1. Start ArcCatalog.
  2. Browse to the redline feature class in your geodatabase.
  3. Right-click the redline feature class and click Properties.

    The Feature Class Properties widget appears.

  4. Click the General tab.
  5. Confirm that both check boxes in the Geometry Properties section are unchecked.

    Confirming m- and z-values are disabled for the redline feature class

Defining symbology for the Activity Type field

Set up the symbology for the redline feature class's activity types.

  1. Open the .mxd file that contains the redline layer.
  2. Right-click the redline layer in the table of contents and click Properties.
  3. Click the Symbology tab.

    Defining the redline layer's symbology

  4. Choose Activity Type in the Value Field list.
  5. Click Add All Values.
  6. Choose line symbology for various redline activity types.
  7. Click OK.

Defining a feature template for the redline layer

The feature template for the redline layer should be based on the feature symbology.

When you are not in an edit session, you can create new feature templates for any layer in your map. To open the template organizer and access the wizard, right-click a layer in the table of contents, point to Edit Features, and click Organize Feature Templates.

  1. Click Organize Templates Organize Templates on the Create Features window.
  2. Click New Template New Template on the Organize Feature Templates dialog box.
  3. Check the layers for which you want to create new templates.
  4. Note:

    If the layer is symbolized as a single symbol, the wizard is completed in one step.

  5. Click Next.
  6. If any of the layers have subtypes or are symbolized by categories, choose the classes for which to create templates.
  7. Click Finish.

Deploying redline routes

Use the following steps to deploy redline routes for Event Editor:

Configuring redline activity types

You can configure redline activities using the following steps:

  1. Start ArcMap.
  2. Open the Catalog window and browse to the redline feature class in your database.
  3. Right-click the redline feature class and click Properties.
  4. Click the Subtypes tab.
    Redline activity type coded domains
    Note:

    The domain assigned to the ACTIVITY_TYPE field is dActivityType.

  5. Click Domains.
  6. On the Workspace Domains widget, click the dActivityType domain name.

    You'll see preconfigured activity types in the form of coded domains for redlines in the Coded Values section. You can edit the activity types in this section.

    Editing redline activity type coded domains

  7. Click Apply and click OK to close the Workspace Domains widget to save the edits.

Configuring a separate redline service

If you don't want to enable feature access to all your LRS event layers, you can publish your redline layer separately so that it is the only layer that is editable.

Note:

If you publish the redline layer in a separate service from the other LRS layers, you need to publish using the same geodatabase version as the LRS map service.

  1. Publish a map service with the Feature Access capability that only contains the redline layer.
  2. Open the web map .json file in a text editor.
  3. Add an additional operational layer to the .json file for the redline map service that you just published.
    {
      "operationalLayers": [
      {
      "id": "LRS_map_service",
      "title": "LRS map",
      "url": "https://<servername.domain>.com/server/rest/services/EventEditorLRSService/MapServer"
      },
      {
      "id": "Redline Layer",
      "title": "LRS map",
      "url": "https://<servername.domain>.com/server/rest/services/EventEditorRedlineService/MapServer"
      }
     ],

    Learn more about the web map .json file and web map specifications for the Map Service Layer

  4. Note:

    If you're using Portal for ArcGIS or ArcGIS Online and you save Event Editor as a web map, both your LRS layers and your separate redline layer will be automatically added to the web map.

Enabling redline attachments

You can enable redlines to contain attachments using the following steps:

  1. Start ArcMap.
  2. Open the Catalog window and browse to the redline feature class in your database.
  3. Right-click the redline feature class and click Attachments > Create Attachments.

Attachments are enabled for redlines.

Related topics