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


JavaScript ArcGIS CSVLayer.definitionExpression用法及代碼示例


基本信息

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

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

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

類: esri/layers/CSVLayer

繼承: CSVLayer > Layer > Accessor

自從:用於 JavaScript 4.1 的 ArcGIS API

用法說明

CSVLayer.definitionExpression函數(或屬性)的定義如下:

definitionExpression String


自從:ArcGIS 適用於 JavaScript 4.7 的 API

SQL where 子句用於過濾客戶端上的函數。隻有滿足定義表達式的特征才會顯示在 View 中。當數據集很大並且您不想將所有要素都帶到客戶端進行分析時,設置定義表達式很有用。定義表達式可以在圖層加載到視圖之前或添加到Map之後構建時設置。如果在圖層添加到Map後設置了定義表達式,視圖將自動刷新以顯示滿足新定義表達式的要素。

例子:

// Set definition expression in constructor to only display earthquakes magnitude 5.0 and greater
const layer = new CSVLayer({
  url: "https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.csv",
  definitionExpression: "mag >= 5"
});
// Set the definition expression directly on layer instance after it has loaded
layer.definitionExpression = "mag >= 5";

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 CSVLayer.definitionExpression。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。