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


JavaScript ArcGIS SubtypeGroupLayer.sublayers用法及代码示例


基本信息

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

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

ESM: import SubtypeGroupLayer from "@arcgis/core/layers/SubtypeGroupLayer";

类: esri/layers/SubtypeGroupLayer

继承: SubtypeGroupLayer > Layer > Accessor

自从:用于 JavaScript 4.20 的 ArcGIS API

用法说明

SubtypeGroupLayer.sublayers函数(或属性)的定义如下:

来自 Object[]

Collection of SubtypeSublayer 对象,允许您更改 SubtypeGroupLayer 的一个或多个子层的属性。如果未指定此属性,则要素服务中的所有子图层都将按照服务中的定义进行显示。

必须使用subtypeCode 引用所有子层以标识子层。使用Collection方法,子层可以是addedremovedreordered。因为 Sublayer 扩展了 Accessor ,所以它的属性可能是 watched

例子:

// Only includes the first SubtypeSublayer from the SubtypeGroupLayer
let layer = new SuptypeGroupLayer({
  url: "https://sampleserver7.arcgisonline.com/server/rest/services/UtilityNetwork/NapervilleElectric/FeatureServer/0",
  sublayers: [{
    subtypeCode: 0,
    visible: true,
    renderer: {
      type: "simple",
      symbol: {
        type: "simple-marker",
        style: "circle",
        color: [120, 120, 120, 255],
        size: 6
      }
    }
  }]
});

相关用法


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