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


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


基本信息

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

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.createQuery函數(或屬性)的定義如下:

createQuery () {Query}


自從:ArcGIS 適用於 JavaScript 4.7 的 API

創建可用於獲取滿足圖層當前過濾器和定義的要素的查詢參數。

返回:

類型 說明
Query 表示圖層過濾器和其他定義的查詢對象。

例子:

// Get a query object for the layer's current configuration
const queryParams = layer.createQuery();
// set a geometry for querying features by the view's extent
queryParams.geometry = view.extent;
// Add to the layer's current definitionExpression
queryParams.where = queryParams.where + " AND TYPE = 'Extreme'";

// query the layer with the modified params object
layer.queryFeatures(queryParams)
  .then(function(results){
    // prints the array of result graphics to the console
    console.log(results.features);
  });

相關用法


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