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


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


基本信息

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

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

customParameters Object


自從:ArcGIS 適用於 JavaScript 4.22 的 API

附加到層獲取的所有資源的 URL 的自定義參數列表。它是一個具有鍵值對的對象,其中 value 是一個字符串。

例子:

// set customParameters to request the top 3 earthquakes since 1900.
// The USGS earthquakes catalog returns earthquakes with specified query parameters.
const csvLayer = new CSVLayer({
  url: "https://earthquake.usgs.gov/fdsnws/event/1/query",
  customParameters: {
    format: "csv",
    starttime: "1900-01-01",
    endtime: "2021-01-01",
    minmagnitude: "8",
    orderby:"magnitude",
    limit: "3"
  }
});

相關用法


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