Custom dictionary style

View inC++QMLView on GitHubSample viewer app

Use a custom dictionary style created from a web style or local style file (.stylx) to symbolize features using a variety of attribute values.

screenshot

Use case

When symbolizing geoelements in your map, you may need to convey several pieces of information with a single symbol. You could try to symbolize such data using a unique value renderer, but as the number of fields and values increases, that approach becomes impractical. With a dictionary renderer you can build each symbol on-the-fly, driven by one or more attribute values, and handle a nearly infinite number of unique combinations.

How to use the sample

Use the radio buttons to toggle between the dictionary symbols from the web style and style file. Pan and zoom around the map to see the symbology from the chosen dictionary symbol style. The web style and style file are slightly different to each other to give a visual indication of the switch between the two.

How it works

  1. Create a PortalItem, referring to a Portal and the item ID of the web style.
  2. Based on the style selected:
    • If the web style toggle has been selected, create a new DictionarySymbolStyle from the portal item, and load it.
    • If the file style toggle has been selected, create a new DictionarySymbolStyle using the local .stylx file.
  3. Create a new DictionaryRenderer, providing the dictionary symbol style.
  4. Apply the dictionary renderer to a feature layer using featureLayer.setRenderer(dictionaryRenderer).
  5. Add the feature layer to the map's operational layers using getOperationalLayers().add(featureLayer).

Relevant API

  • DictionaryRenderer
  • DictionarySymbolStyle
  • Portal
  • PortalItem

About the data

Data used in this sample are from a feature layer showing a subset of restaurants in Redlands, CA hosted as a feature service with attributes for rating, style, health score, and open hours.

The feature layer is symbolized using a dictionary renderer that displays a single symbol for all of these variables. The renderer uses symbols from a custom restaurant dictionary style created from a stylx file and a web style, available as items from ArcGIS Online, to show unique symbols based on several feature attributes. The symbols it contains were created using ArcGIS Pro. The logic used to apply the symbols comes from an Arcade script embedded in the stylx file (which is a SQLite database), along with a JSON string that defines expected attribute names and configuration properties.

Additional information

For information about creating your own custom dictionary style, see the open source dictionary renderer toolkit on GitHub.

Tags

dictionary, military, portal, portal item, renderer, style, stylx, unique value, visualization

Sample Code

CustomDictionaryStyle.qml
Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
// [WriteFile Name=CustomDictionaryStyle, Category=DisplayInformation]
// [Legal]
// Copyright 2019 Esri.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// [Legal]

import QtQuick
import Esri.ArcGISRuntime
import Esri.ArcGISExtras
import QtQuick.Controls

Rectangle {
    id: rootRectangle
    clip: true
    width: 800
    height: 600

    readonly property url dataPath: {
        Qt.platform.os === "ios" ?
                    System.writableLocationUrl(System.StandardPathsDocumentsLocation) + "/ArcGIS/Runtime/Data" :
                    System.writableLocationUrl(System.StandardPathsHomeLocation) + "/ArcGIS/Runtime/Data"
    }

    MapView {
        id: mapView
        anchors.fill: parent

        Component.onCompleted: {
            // Set the focus on MapView to initially enable keyboard navigation
            forceActiveFocus();
        }

        Map {
            // Set basemap
            Basemap {
                initStyle: Enums.BasemapStyleArcGISTopographic
            }

            // Set an initial viewpoint
            ViewpointCenter {
                Point {
                    x: -13046305
                    y: 4036698
                    SpatialReference { wkid: 3857 }
                }
                targetScale: 5000
            }

            // Add a Feature Layer to the Map
            FeatureLayer {
                id: restaurantsLayer
                ServiceFeatureTable {
                    url: "https://services2.arcgis.com/ZQgQTuoyBrtmoGdP/arcgis/rest/services/Redlands_Restaurants/FeatureServer/0"
                }
                // Set initial FeatureLayer renderer to the local DictionaryRenderer
                renderer: localDictionaryRenderer
                property bool usingLocalRenderer: true

            }

            // Create a DictionaryRenderer using the local .stylx file
            DictionaryRenderer {
                id: localDictionaryRenderer
                dictionarySymbolStyle: Factory.DictionarySymbolStyle.createFromFile(dataPath + "/styles/arcade_style/Restaurant.stylx")
            }

            DictionaryRenderer {
                id: webDictionaryRenderer

                // The source feature layer fields do not match those of the the DictionarySymbolStyle
                // With the following overrides, the feature layer's "inspection" field will be mapped to the dictionary symbol style's "healthgrade" field
                symbologyFieldOverrides: {"healthgrade": "inspection"}
                textFieldOverrides: {"healthgrade": "inspection"}

                // Create a DictionarySymbolStyle from a portal item, using the default arcgis.com path
                DictionarySymbolStyle {
                    portalItem: PortalItem {
                        itemId: "adee951477014ec68d7cf0ea0579c800"
                    }
                }
            }
        }
    }

    Rectangle {
        id: rectangle
        anchors {
            left: parent.left
            top: parent.top
            margins: 5
        }
        width: radioColumn.width
        height: radioColumn.height
        color: "white"
        border {
            color: "black"
            width: 1
        }
        opacity: 0.9

        Column {
            id: radioColumn
            padding: 5
            spacing: 5

            Text {
                text: "Custom Dictionary Symbol Style Source"
            }

            RadioButton {
                text: "Local .stylx file"
                checked: true
            }

            RadioButton {
                text: "Web style"
                onCheckedChanged: {
                    restaurantsLayer.renderer = checked ? webDictionaryRenderer : localDictionaryRenderer;
                }
            }
        }
    }
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.