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


JavaScript ArcGIS MapView layerview-create事件用法及代码示例


基本信息

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

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

ESM: import MapView from "@arcgis/core/views/MapView";

类: esri/views/MapView

继承: MapView > View > Accessor

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

MapView layerview-create事件的定义如下:

layerview-create View layerview-create事件


在Map中的每个图层都有相应的 LayerView 在视图中创建和渲染后触发。

属性:

类型说明
layer Layer

Map中为其创建 layerView 的图层。

layerView LayerView

在视图中呈现的 LayerView 表示 layer 中的层。

例子:

// This function fires each time a layer view is created for a layer in
// the map of the view.
view.on("layerview-create", function(event) {
  // The event contains the layer and its layer view that has just been
  // created. Here we check for the creation of a layer view for a layer with
  // a specific id, and log the layer view
  if (event.layer.id === "satellite") {
    // The LayerView for the desired layer
    console.log(event.layerView);
  }
});

相关用法


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