定义用于在 PopupTemplate 中创建 ExpressionContent 元素的 Arcade 表达式 表达式。表达式必须计算为一个字典,表示弹出元素 web 地图规范中定义的 TextContent、FieldsContent 或 MediaContent 弹窗元素。
此表达式可以使用 $feature
、$layer
、$map
和 $datastore
配置变量访问地图或数据存储中的要素、其图层或其他图层的数据值。有关更多信息和有效返回字典的示例,请参阅弹窗元素 Arcade 配置文件规范。
- 另请参阅
// Creates an ordered list in a cluster's popup
// listing the type of fuel used to generate power in the cluster
// ordered by the total number of power plants for each fuel type.
layer.featureReduction = {
type: "cluster",
popupTemplate: {
title: "Power plant summary",
content: [{
type: "expression",
expressionInfo: {
expression: `
// Specify which fields are required by the expression
Expects($aggregatedFeatures, "fuel1", "capacity_mw")
// Query stats for each fuel type
var statsFS = GroupBy($aggregatedFeatures,
[
{ name: 'Type', expression: 'fuel1'},
],
[ // statistics to return for each unique category
{ name: 'capacity_total', expression: 'capacity_mw', statistic: 'SUM' },
{ name: 'capacity_max', expression: 'capacity_mw', statistic: 'MAX' },
{ name: 'num_features', expression: '1', statistic: 'COUNT' }
]
);
// create an list in descending order based
// on the number of plants for each fuel type.
var ordered = OrderBy(statsFs, 'num_features DESC');
var list = "<ol>";
for (var group in ordered){
list += \`<li>\${group.Type} (\${Text(group.num_features, "#,###")})</li>\`
}
list += "</ol>";
// The return dictionary must return a text, fields, or media
// popup element as defined in the web map specification
return {
type: "text",
text: list
}
`,
title: "List of fuel types"
}
}]
}
};
构造函数
属性概述
名称 | 类型 | 描述 | 类 |
---|---|---|---|
String | 类的名称。 更多详情 | Accessor | |
String | 计算为字典的 Arcade 表达式 表达式。 更多详情 | ElementExpressionInfo | |
String | 表达式的返回类型。 更多详情 | ElementExpressionInfo | |
String | 用于描述表达式返回的 popup 元素的标题。 更多详情 | ElementExpressionInfo |
属性详细信息
-
类的名称。声明的类名称格式化为
geoscene.folder.className
。
-
expression String
-
计算为字典的 Arcade 表达式 表达式。字典必须表示弹出元素 web 地图规范中定义的 TextContent、FieldsContent 或 MediaContent 弹出内容元素。
此表达式可以使用
$feature
、$layer
、$map
和$datastore
配置变量访问地图或数据存储中的要素、其图层或其他图层的数据值。有关更多信息和有效返回字典的示例,请参阅弹窗元素 Arcade 配置文件规范。- 另请参阅
-
弹出元素 Web 地图规范
示例// Creates an column chart where each category/value // is an aggregate of two or more fields layer.popupTemplate = { title: "Educational Attainment", content: [{ type: "expression", expressionInfo: { expression: ` // Create a dictionary of attributes representing the values // to display in the table var attributes = { "No School": $feature.no_school + $feature.some_primary, "Primary": $feature.primary_complete + $feature.some_secondary, "Secondary": $feature.secondary_complete + $feature.some_highSchool, "High School": $feature.highSchool_diploma + $feature.highSchool_ged + $feature.some_college, "College/University": $feature.associates + $feature.bachelors + $feature.masters + $feature.doctorate + $feature.professional; }; var fieldInfos = []; // Create an array representing the attribute names (or keys) // to include in the chart for (var k in attributes){ Push(fieldInfos, { fieldName: k }); } // Returns a dictionary providing the information // required by the popup to render a table of key value pairs return { type: "media", attributes: attributes, // The list of attribute names (keys) to include in the table fieldInfos: fieldInfos }; `, title: "Educational Attainment" } }] };
-
returnType String
-
表达式的返回类型。内容元素表达式总是返回字典。
对于 ElementExpressionInfo,returnType 总是 "dictionary"。
-
title String
-
用于描述表达式返回的 popup 元素的标题。
方法概述
名称 | 返回值类值 | 描述 | 类 |
---|---|---|---|
添加一个或多个与对象的生命周期相关联的句柄。 更多详情 | Accessor | ||
ElementExpressionInfo | 创建 ElementExpressionInfo 实例的深度克隆。 更多详情 | ElementExpressionInfo | |
* | 创建此类的新实例并使用从 GeoScene 产品生成的 JSON 对象值对其进行初始化。 更多详情 | ElementExpressionInfo | |
Boolean | 如果存在指定的句柄组,则返回 true。 更多详情 | Accessor | |
移除对象拥有的句柄组。 更多详情 | Accessor | ||
Object | 将此类的实例转换为 GeoScene Portal JSON 表示。 更多详情 | ElementExpressionInfo |
方法详细说明
-
addHandles(handleOrHandles, groupKey)inherited起始版本:GeoScene Maps SDK for JavaScript 4.25
-
添加一个或多个与对象的生命周期相关联的句柄。当对象被销毁时,将移除句柄。
// Manually manage handles const handle = reactiveUtils.when( () => !view.updating, () => { wkidSelect.disabled = false; }, { once: true } ); // Handle gets removed when the object is destroyed. this.addHandles(handle);
参数handleOrHandles WatchHandle|WatchHandle[]对象销毁后,标记为要移除的句柄。
groupKey *optional标识句柄应添加到的组的键。组中的所有句柄稍后都可使用 Accessor.removeHandles() 进行删除。如果未提供键,则句柄将被添加到默认组。
-
clone(){ElementExpressionInfo}
-
创建 ElementExpressionInfo 实例的深度克隆。
返回类型 描述 ElementExpressionInfo ElementExpressionInfo 实例的深度克隆。
-
fromJSON(json){*}static
-
创建此类的新实例并使用从 GeoScene 产品生成的 JSON 对象值对其进行初始化。传入到输入
json
参数的对象通常来自对 REST API 中查询操作的响应或来自另一个 GeoScene 产品的 toJSON() 方法。有关何时以及如何使用该函数的详细信息和示例,请参阅指南中的使用 fromJSON() 主题。参数json ObjectGeoScene 格式实例的 JSON 表示。有关各种输入 JSON 对象的结构示例,请参阅 GeoScene REST API 文档。
返回类型 描述 * 返回该类的新实例。
-
起始版本:GeoScene Maps SDK for JavaScript 4.25
-
如果存在指定的句柄组,则返回 true。
参数groupKey *optional组键。
返回类型 描述 Boolean 如果存在指定的句柄组,则返回 true
。示例// Remove a named group of handles if they exist. if (obj.hasHandles("watch-view-updates")) { obj.removeHandles("watch-view-updates"); }
-
removeHandles(groupKey)inherited起始版本:GeoScene Maps SDK for JavaScript 4.25
-
移除对象拥有的句柄组。
参数groupKey *optional要移除的组键或组键的数组或集合。
示例obj.removeHandles(); // removes handles from default group obj.removeHandles("handle-group"); obj.removeHandles("other-handle-group");
-
toJSON(){Object}
-
将此类的实例转换为 GeoScene Portal JSON 表示。有关详细信息,请参阅使用 fromJSON() 指南主题。
返回类型 描述 Object 此类实例的 GeoScene Portal JSON 表示。