AttributeColorInfo

AMD: require(["geoscene/renderers/support/AttributeColorInfo"], (AttributeColorInfo) => { /* 代码 */ });
ESM: import AttributeColorInfo from "@geoscene/core/renderers/support/AttributeColorInfo";
类: geoscene/renderers/support/AttributeColorInfo
继承于: AttributeColorInfo Accessor
起始版本: GeoScene API for JavaScript 4.22

在渲染器的属性 中定义 DotDensityRenderer 的符号。

示例:
示例代码:
renderer.attributes = [{
  field: "POPULATION",
  label: "Population (2019)",
  color: "gray"
}];

构造函数

new AttributeColorInfo(properties)
参数:
properties Object
optional

所有可传入构造函数的属性,请参见属性列表

示例代码:
// Typical usage in a dot density renderer
renderer.attributes = [{
  field: "Population",
  color: "black"
}];

属性列表

可以设置、检索或监听的属性。参见使用属性主题。
展示继承属性 隐藏继承属性
属性 类型 描述
Color更多信息

用户表示给定字段的颜色。

更多信息AttributeColorInfo
String更多信息

类名。

更多信息Accessor
String更多信息

要用点表示的数字属性字段的名称,该点具有提供给 DotDensityRenderer 的参考点值

更多信息AttributeColorInfo
String更多信息

用于描述图例微件中的字段或属性的标签。

更多信息AttributeColorInfo
String更多信息

遵循 Arcade 可视化配置文件定义的规范的 Arcade 表达式。

更多信息AttributeColorInfo
String更多信息

标识和描述在 valueExpression 属性中定义的相关 Arcade 表达式的标题。

更多信息AttributeColorInfo

属性详细说明

自动转换自 Number[]|String|Object

用户表示给定字段的颜色。

declaredClass Stringreadonly inherited

类名。类的名称声明格式为 geoscene.folder.className

field String

要用点表示的数字属性字段的名称,该点具有提供给 DotDensityRenderer 的参考点值。

label String

用于描述图例微件中的字段或属性的标签。

valueExpression String

遵循 Arcade 可视化配置文件定义的规范的 Arcade 表达式。 UniqueValueRenderer 中的表达式可以使用 $feature 全局变量引用字段值,并且必须返回字符串或数字。

此表达式返回的值是用于驱动 uniqueValueInfos 中定义的可视化的数据。

此属性通常用作数据驱动可视化的字段替代。


示例:
valueExpressionTitle String

标识和描述 valueExpression 属性中定义的 Arcade表达式的标题。如果 legendOptions 属性中没有提供标题,则它将在图例中显示为相应渲染器的 title

方法列表

属性 返回值类型 描述
AttributeColorInfo更多信息

深拷贝对象。

更多信息AttributeColorInfo
*更多信息

创建此类的新实例并使用从 GeoScene 产品生成的 JSON 对象的值对其进行初始化。

更多信息AttributeColorInfo
Object更多信息

将此类的实例转换为其 GeoScene portal JSON 格式。

更多信息AttributeColorInfo

方法详细说明

深拷贝对象。

返回值:
类型 描述
AttributeColorInfo 返回调用此方法对象的深拷贝。
示例代码:
// Creates a deep clone of the renderer's first attribute object.
let attributeColorInfo = renderer.attributes[0].clone();
fromJSON(json){*}static

创建此类的新实例,并使用从 GeoScene 产品生成的 JSON 对象的值对其进行初始化。传递给输入 json 参数的对象通常来自对 REST API 中的查询操作的响应,或者来自另一个 GeoScene 产品的 toJSON() 方法。有关何时以及如何使用此函数的详细信息和示例,请参阅指南中的使用 fromJSON() 主题。

参数:
json Object

实例的 json 表达式,以 geoscene 格式显示。

返回值:
类型 描述
* 返回一个该类的新实例。
toJSON(){Object}

将此类的实例转换为 GeoScene portal JSON 格式。 有关更多信息,请参阅使用 fromJSON() 指南。

返回值:
类型 描述
Object 此类实例的 GeoScene portal JSON 格式。

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