Arcade 驱动型可视化

使用 UniqueValueRenderer 样式化美国各县以显示登记选民的主要政党归属。

什么是 Arcade?

有时您需要渲染图层中不存在的属性。Arcade 是一种表达式语言,允许您在运行时计算图层中每个要素的值,并将这些值用作数据驱动型可视化的基础。当您需要在频繁更新的数据源或未拥有的图层上派生新数据值时,此方式很方便。

有关如何在 GeoScene Maps SDK for JavaScript 的其他部分使用 Arcade 的更多信息,请参阅 Arcade - 表达式语言指南。

Arcade 的工作原理

Arcade 表达式 表达式在 ClassBreaksRendererUniqueValueRendererDotDensityRenderer 或任何视觉变量 (colorsizeopacityrotation) 的 valueExpression 属性中作为字符串引用。定义后,始终使用它而不是引用 field/normalizationField

在 ClassBreaksRenderer、DotDensityRenderer 或任何视觉变量中使用时,值表达式必须计算为数字。表达式可以计算为 UniqueValueRenderer 中的字符串或数字。

示例

UniqueValueRenderer 众数渲染

在此示例中,Arcade 用于创建众数渲染地图,以显示美国各郡县最常见的政党关系。底部图层具有三个字段,用于标识各郡县的共和党、民主党和独立/非党派选民的数量。由于服务不包含指示独大型政党的字段,因此可编写一个 Arcade 表达式来标识每个要素。

在 UniqueValueRenderer 的 valueExpression 属性中引用了 Arcade 表达式。

Arcade 表达式众数渲染
展开
代码块使用深色复制
38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
        const renderer = {
          type: "unique-value",
          valueExpression: `
            // store field values in variables with
            // meaningful names. Each is the total count
            // of votes for the respective party

            var republican = $feature.MP06025a_B;
            var democrat = $feature.MP06024a_B;
            var independent = $feature.MP06026a_B;
            var parties = [republican, democrat, independent];

            // Match the maximum value with the label
            // of the respective field and return it for
            // use in a UniqueValueRenderer

            return Decode( Max(parties),
              republican, 'republican',
              democrat, 'democrat',
              independent, 'independent',
            'n/a' );
          `,
 
展开

然后为渲染器中的每个预期返回值分配唯一的符号。

唯一值信息
展开
代码块使用深色复制
63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
          uniqueValueInfos: [
            {
              value: "democrat",
              symbol: createSymbol("#00c3ff"),
              label: "Democrat"
            },
            {
              value: "republican",
              symbol: createSymbol("#ff002e"),
              label: "Republican"
            },
            {
              value: "independent",
              symbol: createSymbol("#faff00"),
              label: "Independent/other party"
            }
          ]
 
展开

Arcade 驱动型不透明度

Arcade 可在渲染器中引用数据值的任何地方使用,包括视觉变量。以下代码段引用了不透明度视觉变量中的 Arcade 表达式,以计算各郡县中独大型政党的选民百分比。不透明度停止点可将预期数据值映射到不透明度值。

不透明郡县表示该地区的选民绝大多数为独大型政党选民。透明郡县表示该地区每个政党的个人组合更加多样化。

GeoScene JS API
展开
代码块使用深色复制
84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102 102
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
        renderer.visualVariables = [{
          type: "opacity",
          valueExpression: `
            var republican = $feature.MP06025a_B;
            var democrat = $feature.MP06024a_B;
            var independent = $feature.MP06026a_B;
            var parties = [republican, democrat, independent];
            var total = Sum(parties);
            var max = Max(parties);

            return (max / total) * 100;
          `,
          valueExpressionTitle: "Share of registered voters comprising the dominant party",
          stops: [
            { value: 33, opacity: 0.05, label: "< 33%" },
            { value: 44, opacity: 1.0, label: "> 44%" }
          ]
        }];
 
展开

有关如何在 GeoScene Maps SDK for JavaScript 的其他部分使用 Arcade 的更多信息,请参阅 Arcade - 表达式语言指南。

Arcade 表达式

Arcade 允许您动态计算渲染器、弹出窗口和标注的新数据值

使用 Arcade 创建自定义可视化的相关示例的图像预览

使用 Arcade 创建自定义可视化

使用 Arcade 创建自定义可视化

MapImageLayer - 从动态工作空间探索数据的相关示例的图像预览

MapImageLayer - 从动态工作空间探索数据

MapImageLayer - 从动态工作空间探索数据

多行标注的相关示例的图像预览

多行标注

多行标注

https://developers.arcgis.com/arcade

您的浏览器不再受支持。请升级您的浏览器以获得最佳体验。