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


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


基本信息

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

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

ESM: import * as locationSchemes from "@arcgis/core/smartMapping/symbology/location";

对象: esri/smartMapping/symbology/location

自从:用于 JavaScript 4.2 的 ArcGIS API

用法说明

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

getSchemes (params) {LocationSchemes}


返回为 FeatureLayerSceneLayer 中的仅位置可视化定义符号属性的主要方案和次要方案。 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"

view

SceneView

可选的

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

worldScale

Boolean

可选的

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

返回:

类型 说明
LocationSchemes 返回包含用于给定底图的最佳位置方案(和辅助方案)的对象。

例子:

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

// the best default scheme for the layer, basemap, and theme
let primaryScheme = schemes.primaryScheme;

相关用法


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