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


JavaScript ArcGIS Legend.respectLayerVisibility用法及代码示例


基本信息

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

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

ESM: import Legend from "@arcgis/core/widgets/Legend";

类: esri/widgets/Legend

继承: Legend > Widget > Accessor

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

Legend.respectLayerVisibility函数(或属性)的定义如下:

respectLayerVisibility Boolean


自从:ArcGIS 适用于 JavaScript 4.13 的 API

确定是否尊重Map中控制图例可见性的图层属性 (minScale,maxScale,legendEnabled)。默认情况下,图层的图例元素不会渲染在给出以下条件的图例中:

当图例的 respectLayerVisibility 属性设置为 false 时,Map中每个图层的图例元素将始终显示,因此忽略Map中每个图层的 minScalemaxScalelegendEnabled 属性Map。

默认值:true

例子:

// Always displays legend elements for the map's layers
// regardless of their minScale, maxScale, and legendEnabled properties
legend.respectLayerVisibility = false;

相关用法


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