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


JavaScript ArcGIS FeatureLayer.queryTopObjectIds用法及代碼示例


基本信息

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

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

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

類: esri/layers/FeatureLayer

繼承: FeatureLayer > Layer > Accessor

自從:用於 JavaScript 4.0 的 ArcGIS API

用法說明

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

queryTopObjectIds (topFeaturesQuery, options) {Promise<Number[]>}


自從:ArcGIS 適用於 JavaScript 4.20 的 API

對要素服務執行 TopFeaturesQuery 並返回滿足查詢的要素的對象 ID 數組。

已知限製

  • 目前,queryTopObjectIds 僅支持服務器端 FeatureLayers

參數:

類型說明
topFeaturesQuery TopFeaturesQuery autocast
來自 Object

指定查詢的屬性、空間、時間和頂部過濾器。必須設置topFilter 參數。

options Object
可選的

具有以下屬性的對象。

規格:
signal

AbortSignal

可選的

可用於中止異步任務的信號對象。當發出中止信號時,返回的 Promise 將被名為 AbortErrorError 拒絕。另請參閱AbortController,了解有關如何構建可用於傳遞中止信號的控製器的更多信息。

返回:

類型 說明
Promise<Number[]> 解析後,返回一個數字數組,表示滿足查詢的要素的對象 ID。

例子:

// Get the objectIds top three earthquakes
// grouped by regions and ordered by their magnitude levels
// top query will only run against earthquakes that have mag >=6.
const query = new TopFeaturesQuery({
  where: "mag >= 6",
  topFilter: new TopFilter({
    topCount: 3,
    groupByFields: ["region"],
    orderByFields: ["mag DESC"]
  })
});
featureLayer.queryTopObjectIds(query)
  .then(function(response){
     // returns an array of object ids of top three earthquakes within each region
   });

相關用法


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