When symbolizing geoelements A geoelement refers to any geographic element in a map or map view that can be identified by its location to return attribute information. Learn more in your map, you may need to convey several pieces of information with a single symbol. For example, you may want to symbolize restaurants so that each symbol A symbol defines the properties used to display a geometry or text. Learn more reflects the type of food, price, rating, number of reviews, current health grade, seating capacity, average wait time, and so on. You can try to symbolize such data using a unique value renderer A unique value renderer is a renderer that defines a distinct symbol for each unique data value returned from a field or expression in a layer. Learn more , but as the number of fields and values increases, that approach becomes impractical. With a dictionary renderer A dictionary renderer is a renderer that uses a style file generated in ArcGIS Pro from a rule engine and is used to display types of advanced symbology on a map, such as military symbology. Learn more , however, you can build each symbol on the fly based on one or several attribute Attributes are fields and values for a single feature or non-spatial record. They are typically stored in a database or service such as a feature service. Learn more values and also handle a nearly infinite number of unique combinations.

Each component of a dictionary renderer’s symbol is based on an attribute value and describes something about the geoelement A geoelement refers to any geographic element in a map or map view that can be identified by its location to return attribute information. Learn more it represents. This can be useful for data with attribute values that change frequently, since the symbol A symbol defines the properties used to display a geometry or text. Learn more can update to show the current state of the geoelement. The following example shows a single symbol for a restaurant in which each component (symbol primitive) describes an aspect of the feature:

A symbol from a dictionary style constructed using geoelement attribute values.

A dictionary renderer A dictionary renderer is a renderer that uses a style file generated in ArcGIS Pro from a rule engine and is used to display types of advanced symbology on a map, such as military symbology. Learn more applies symbols to geoelements A geoelement refers to any geographic element in a map or map view that can be identified by its location to return attribute information. Learn more through an associated dictionary symbol style. The style contains all the required symbols as well as (for newer format styles) logic and configurable properties for applying them. For details, see the How a dictionary renderer works section below.

How a dictionary renderer works

A renderer A renderer is a collection of rules and symbols used to display the data in a layer. Learn more contains a collection of (one or more) symbols and some logic that determines how those symbols are applied to geoelements A geoelement refers to any geographic element in a map or map view that can be identified by its location to return attribute information. Learn more in a layer or graphics overlay A graphics overlay is a client-side, temporary container of graphics to display on a map view or scene view. Learn more . Several types of renderers are provided to display symbols, as described in the symbology overview.

A dictionary renderer A dictionary renderer is a renderer that uses a style file generated in ArcGIS Pro from a rule engine and is used to display types of advanced symbology on a map, such as military symbology. Learn more applies symbols from an associated style file A style file is a .stylx file created in ArcGIS Pro that contains symbol primitives, such as the symbol frame, lines that make up inner icons. Learn more , stored in an SQLite database with a .stylx extension. Each symbol A symbol defines the properties used to display a geometry or text. Learn more in the style is identified with a unique key. A style can be opened in ArcGIS Pro, and symbols can be added, deleted, or modified.

Catalog for managing custom styles in ArcGIS Pro.

You can create your own dictionary style with the symbols you need as well as the logic for how they are applied. The logic for applying symbols from a dictionary style is implemented as an Arcade Arcade is a lightweight and secure expression language used in ArcGIS products and APIs. Arcade expressions are commonly used to calculate or format field values for data-driven visualizations, labels, and popups. The expressions work against data stored in data services. Learn more script and is stored in the style file A style file is a .stylx file created in ArcGIS Pro that contains symbol primitives, such as the symbol frame, lines that make up inner icons. Learn more along with the symbols. A JSON definition of dictionary configuration properties (also stored in the style) allows you to define the expected attributes Attributes are fields and values for a single feature or non-spatial record. They are typically stored in a database or service such as a feature service. Learn more and other settings used by the style.

One or more symbols are read from a dictionary style to build a composite multilayer symbol for a geoelement A geoelement refers to any geographic element in a map or map view that can be identified by its location to return attribute information. Learn more . A dictionary renderer A dictionary renderer is a renderer that uses a style file generated in ArcGIS Pro from a rule engine and is used to display types of advanced symbology on a map, such as military symbology. Learn more determines the symbol components to request for a geoelement’s symbol (using symbol keys) based on input attribute Attributes are fields and values for a single feature or non-spatial record. They are typically stored in a database or service such as a feature service. Learn more values and style-specific logic. The Arcade Arcade is a lightweight and secure expression language used in ArcGIS products and APIs. Arcade expressions are commonly used to calculate or format field values for data-driven visualizations, labels, and popups. The expressions work against data stored in data services. Learn more code below, for example, reads the input value for the health inspection ($feature.healthgrade), determines the corresponding letter grade, and stores the appropriate key to return.

if (!isempty($feature.healthgrade) && $feature.healthgrade > 0) {
if($feature.healthgrade > 89){ healthgradekey = 'inspection-A' }
else if($feature.healthgrade > 79){ healthgradekey = 'inspection-B' }
else if($feature.healthgrade > 69){ healthgradekey = 'inspection-C' }
else { healthgradekey = 'inspection-yuk' }
}

While you can open a dictionary style in ArcGIS Pro for editing symbols, you cannot access the Arcade logic or configuration there. You can use a utility for opening SQLite databases (such as DB Browser for SQLite), however, to view and edit those properties of the style.

The meta table in the style file contains the dictionary configuration and script.

For more information about creating your own dictionary style, see the Dictionary Renderer Toolkit.

Dictionary style properties

Dictionary style properties include symbol properties, text properties, and configuration properties. Symbol and text properties define the attribute Attributes are fields and values for a single feature or non-spatial record. They are typically stored in a database or service such as a feature service. Learn more fields expected by the style to display symbols and text. Configuration properties provide settings to control specific aspects of their display. When the dictionary renderer A dictionary renderer is a renderer that uses a style file generated in ArcGIS Pro from a rule engine and is used to display types of advanced symbology on a map, such as military symbology. Learn more is applied, expected attribute names in the symbol and text properties are automatically mapped to fields in the data that have a matching name. To use an input field that doesn’t match an expected attribute, you can explicitly map the input field to one of the configured attribute names in the symbol or text properties. This allows more flexibility for applying a style to datasets that have different names for input fields or that have several fields with appropriate input values.

The following example shows the configuration JSON for the restaurant dictionary style illustrated previously. In this case, there is only one configuration property, which is the ability to turn text display on or off. Symbol properties are defined with a list of the expected attributes Attributes are fields and values for a single feature or non-spatial record. They are typically stored in a database or service such as a feature service. Learn more for creating geoelement A geoelement refers to any geographic element in a map or map view that can be identified by its location to return attribute information. Learn more symbols. The text properties list contains attributes used to display text with the symbol (in this case, only a “name” field).

{
"configuration": [{
"name": "text",
"value": "ON",
"domain": ["ON", "OFF"],
"info": "indicates if the text is rendered"
}
],
"symbol": ["style", "rating", "price", "healthgrade", "opentime", "closetime"],
"text": ["name"]
}

Map geoelement fields to configuration fields

A DictionaryRenderer will automatically read fields in your data that have names matching those required by the style specification. For any fields in your data that don’t exactly match the expected names, map the field names by setting the DictionaryRenderer::symbologyFieldOverrides() and DictionaryRenderer::textFieldOverrides() properties of the dictionary renderer. These operations take a set of key-value pairs, in which the key is the expected attribute Attributes are fields and values for a single feature or non-spatial record. They are typically stored in a database or service such as a feature service. Learn more name (for example, healthgrade), and the value is the corresponding attribute name from the dataset (for example, inspection_score).

If you’re not sure what attributes Attributes are fields and values for a single feature or non-spatial record. They are typically stored in a database or service such as a feature service. Learn more are defined in the symbol and text configuration properties, you can obtain a string list of the expected symbology and text fields from DictionarySymbolStyle by calling DictionarySymbolStyle::symbologyFieldNames and DictionarySymbolStyle::textFieldNames.

Military symbols

Military symbols are based on military standards, such as MIL-STD-2525C and MIL-STD-2525D, and are composed of many elements such as frames, icons, modifiers, graphic amplifiers, and text amplifiers. In ArcGIS, military symbols are composed of multiple symbol layers. Esri builds desktop and web military symbology dictionary styles for the US and NATO standards: MIL-STD-2525B with CHANGE 2, MIL-STD-2525C, MIL-STD-2525D, MIL-STD-2525D with CHANGE 1, MIL-STD-2525E, APP-6(B), APP-6(D) and APP-6(E).

Military symbol dictionary styles allow you to choose whether to assemble and render the symbol A symbol defines the properties used to display a geometry or text. Learn more based on a single attribute Attributes are fields and values for a single feature or non-spatial record. They are typically stored in a database or service such as a feature service. Learn more with a unique Symbol ID Code (SIC or SIDC) or based on a series of predefined attributes. For example, in MIL-STD-2525BC2, a SIC of SPSPCL‑‑‑‑‑‑‑‑‑ represents this symbol: A military symbol based on a symbol ID code.

The ArcGIS Military Symbology Editor is an ArcGIS Pro tool for creating and sharing military overlays. It leverages a specific schema for each military symbol standard (such as identity, symbol set, and so on). Data created using this tool will work by default with the military symbol dictionary styles, configured with the DictionaryRenderer.

Regardless of the specification, all military symbols are based on a varying combination of attributes or codes and a set of rules about how the symbols should display.

A map in an app showing military symbols.

Text can be displayed as additional symbol components using the values contained in the specified field or fields. The configuration property for showing or hiding text can be used to turn off all text display, regardless of the input attribute Attributes are fields and values for a single feature or non-spatial record. They are typically stored in a database or service such as a feature service. Learn more values.

Dictionary styles for the military symbology standards MIL-STD 2525 and APP-6 support symbolizing control measure lines based on ordered anchor points. To ensure this specification is applied, iterate through the collection of dictionary symbol style configurations (DictionarySymbolStyle::configurations()) and find the configuration that has the DictionarySymbolStyleConfiguration::name() of "model". Set DictionarySymbolStyleConfiguration::setValue() to be "ORDERED ANCHOR POINTS". Note, you can download these military dictionary symbol styles from ArcGIS Online.

Examples

Symbolize a feature layer or graphics overlay

  1. Point to the dictionary style file A style file is a .stylx file created in ArcGIS Pro that contains symbol primitives, such as the symbol frame, lines that make up inner icons. Learn more (.stylx) and create a DictionarySymbolStyle object.

  2. If the input field names match the dictionary style’s expected fields for symbols and text, they will be used to symbolize the data. If field names don’t match (or you want to use different fields), you can explicitly map the expected fields to the appropriate fields in the data.

  3. Set configuration property values for the style.

  4. Create a dictionary renderer A dictionary renderer is a renderer that uses a style file generated in ArcGIS Pro from a rule engine and is used to display types of advanced symbology on a map, such as military symbology. Learn more that uses the style. If you need to use custom field mappings, include the key-value pairs that define them.

  5. Assign the DictionaryRenderer to the layer or graphics overlay.

// Create a DictionaryRenderer using the local .stylx file
DictionarySymbolStyle* localDictionaryStyle = DictionarySymbolStyle::createFromFile(defaultDataPath() + "/ArcGIS/Runtime/Data/styles/arcade_style/Restaurant.stylx", this);
DictionaryRenderer* dictionaryRenderer = new DictionaryRenderer(localDictionaryStyle, this);
// Set initial FeatureLayer renderer to the local DictionaryRenderer
featureLayer->setRenderer(dictionaryRenderer);
// Create a DictionarySymbolStyle from a portal item, using the default arcgis.com path
PortalItem* portalItem = new PortalItem("adee951477014ec68d7cf0ea0579c800", this);
DictionarySymbolStyle* dictSymbStyleFromPortal = new DictionarySymbolStyle(portalItem, this);
// The source feature layer fields do not match those of the the DictionarySymbolStyle so we create a fieldMap to correct this
QMap<QString, QString> fieldMap;
// With the following override, the feature layer's "inspection" field will be mapped to the dictionary symbol style's "healthgrade" field
fieldMap["healthgrade"] = "inspection";
DictionaryRenderer* webDictionaryRenderer = new DictionaryRenderer(dictSymbStyleFromPortal, fieldMap, fieldMap, this);

Restaurants symbolized with a custom dictionary style.

Get a symbol for a specified set of attributes

  1. Point to the dictionary style file A style file is a .stylx file created in ArcGIS Pro that contains symbol primitives, such as the symbol frame, lines that make up inner icons. Learn more (.stylx) and create a DictionarySymbolStyle object.

  2. Define a set of attributes Attributes are fields and values for a single feature or non-spatial record. They are typically stored in a database or service such as a feature service. Learn more with which to build the symbol. These are key-value pairs containing the expected attribute name and the input value.

  3. Use the attribute values to search the style and return the appropriate multilayer symbol.

// Open a custom Arcade-based style using a path to the .stylx file.
DictionarySymbolStyle* restaurantStyle = DictionarySymbolStyle::createFromFile(filePath, this);
QMap<QString,QVariant> attributes
{
{"style", "Pizza"},
{"healthgrade", 83.0},
{"rating", 2.52},
{"price", 1}
};
Symbol* symbolResult = nullptr;
// Fetch the symbol with the given attributes
restaurantStyle->fetchSymbolAsync(attributes).then([&](Symbol* symbol) {
// do something with the symbol
symbolResult = symbol;
});

A symbol from a dictionary style constructed using geoelement attribute values.

Samples