当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript ArcGIS predominance.getSchemes用法及代码示例


基本信息

以下是所在类或对象的基本信息。

AMD: require(["esri/smartMapping/symbology/predominance"], (predominanceSchemes) => { /* code goes here */ });

ESM: import * as predominanceSchemes from "@arcgis/core/smartMapping/symbology/predominance";

对象: esri/smartMapping/symbology/predominance

自从:用于 JavaScript 4.9 的 ArcGIS API

用法说明

predominance.getSchemes函数(或属性)的定义如下:

getSchemes (params) {PredominanceSchemes}


返回为 Layer 中基于优势的数据驱动可视化定义符号属性的主要方案和次要方案。 basemap 参数确定用于可视化每个特征的符号颜色。 geometryType 确定要返回的符号类型。

参数:

规格:
类型说明
params Object

有关可能传递给此函数的每个参数的详细信息,请参见下表。

规格:
basemap

String|Basemap

可选的

与可视化配对的 Esri 底图。此值指示用于根据给定底图可视化要素的最佳符号颜色。如果您有非 Esri 底图(例如具有自定义样式的 VectorTileLayer 底图)或根本没有底图,则使用 basemapTheme 参数而不是此参数。

basemapTheme

String

可选的

如果您有非 Esri 底图(例如具有自定义样式的 VectorTileLayer 底图)或根本没有底图,请使用此参数指示可视化的背景是 light 还是 dark

可能的值"light"|"dark"

geometryType

String

要可视化的要素的几何类型。

可能的值"point"|"multipoint"|"polyline"|"polygon"|"mesh"|"multipatch"

numColors

Number

要包含在优势可视化中的唯一值的数量。

theme

String

可选的
默认值:默认

确定要返回的主要和次要配色方案集。

值永远是"default".

worldScale

Boolean

可选的

指示方案的大小单位是否以米为单位。当方案用于 3D 体积符号系统时,这应该是 true。如果此属性设置为 true ,则必须提供 view

view

SceneView

可选的

将在其中使用该方案的 SceneView 实例。此属性仅适用于将方案与 3D 符号结合使用时。

返回:

类型 说明
PredominanceSchemes 返回包含用于给定底图的最佳类型方案的对象;它还包含辅助方案。

例子:

// gets the primary scheme for the features of the given geometry type and basemap
const schemes = predominanceSchemes.getSchemes({
  basemap: map.basemap,
  geometryType: featureLayer.geometryType
});

// the best default scheme for the layer and basemap
const primaryScheme = schemes.primaryScheme;

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 predominance.getSchemes。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。