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


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


基本信息

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

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

refresh ()


自從:ArcGIS 適用於 JavaScript 4.22 的 API

獲取圖層的所有數據。

例子:

// update the customParameters for the query then call
// refresh method to fetch new features from the csv feed
csvLayer.customParameters.limit = 10;
csvLayer.refresh();

相關用法


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