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


JavaScript ArcGIS Slide.visibleLayers用法及代码示例


基本信息

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

AMD: require(["esri/webscene/Slide"], (Slide) => { /* code goes here */ });

ESM: import Slide from "@arcgis/core/webscene/Slide";

类: esri/webscene/Slide

继承: Slide > Accessor

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

Slide.visibleLayers函数(或属性)的定义如下:

visibleLayers Collection<Accessor> autocast


场景的可见层。这是一个对象集合,用于存储对 scene layersground layers 的引用(按 ID),当幻灯片应用于 SceneView 时,这些引用设置为 visible

分配可见层时,将自动转换以下类型的值:

下表概述了集合中每个对象的规范。

属性:

类型说明
id String
来自 Object[]

当幻灯片应用于视图时,WebSceneGround 中的 layer 的 ID,在 SceneView 中生成 visible

sublayerIds Number[]
来自 Object[]

layer id 指定的图层上可见子图层的服务 id。如果这不存在,则应用幻灯片时子层的可见性不会改变。

例子:

// Update the visible layers to the second layer in the scene, and the
// first elevation layer in the ground.
slide.visibleLayers = [
  { id: scene.layers.getItemAt(1).id }
  { id: scene.ground.layers.getItemAt(0).id }
];

// Equivalent using convenience autocasting
slide.visibleLayers = [scene.layers.getItemAt(0), scene.ground.layers.getItemAt(0)];

相关用法


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