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


JavaScript ArcGIS heatmapStatistics.heatmapStatistics用法及代碼示例


基本信息

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

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

ESM: import heatmapStatistics from "@arcgis/core/smartMapping/statistics/heatmapStatistics";

函數: esri/smartMapping/statistics/heatmapStatistics

自從:用於 JavaScript 4.8 的 ArcGIS API

用法說明

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

heatmapStatistics (params) {Promise<HeatmapStatisticsResult>}


返回一個對象,其中包含說明給定點 Layer 的熱圖可視化強度值的各種統計信息。

參數:

規格:
類型說明
params Object

有關每個參數的詳細信息,請參見下表。

規格:

生成像素強度值統計信息的層和給定的field(如果提供)。

view

MapView

MapView 實例用於根據當前視圖中的特征計算像素強度值。

field

String

可選的

將為其生成統計信息的數字字段的名稱。

blurRadius

Number

可選的

每個點的影響區域,以該點為單位的像素半徑。

features

Graphic[]

可選的

要為其計算統計數據的特征子集。

signal

AbortSignal

可選的

允許可取消的請求。如果取消,promise 將被拒絕,並出現名為 AbortError 的錯誤。另見AbortController

返回:

類型 說明
Promise<HeatmapStatisticsResult> 返回解析為 HeatmapStatisticsResult 的 Promise。

例子:

heatmapStatistics({
  layer: featureLayer,
  view: mapView
}).then(function(stats){
  // `stats` contains statistics used to construct a heatmap renderer
});

相關用法


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