當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript ArcGIS View layerview-create事件用法及代碼示例


基本信息

以下是所在類或對象的基本信息。

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

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

類: esri/views/View

繼承: View > Accessor

子類: MapView , SceneView

自從:用於 JavaScript 4.0 的 ArcGIS API

用法說明

View layerview-create事件的定義如下:

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大神的英文原創作品 View layerview-create event。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。