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


JavaScript ArcGIS TopFeaturesQuery.timeExtent用法及代碼示例


基本信息

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

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

ESM: import TopFeaturesQuery from "@arcgis/core/rest/support/TopFeaturesQuery";

類: esri/rest/support/TopFeaturesQuery

繼承: TopFeaturesQuery > Accessor

自從:用於 JavaScript 4.20 的 ArcGIS API

用法說明

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

timeExtent TimeExtent autocast


針對 time-aware layers 的時間查詢的時間範圍。例如,它可用於發現在特定日期從晚上 10 點到早上 6 點的夜班期間發生的所有犯罪。

例子:

// query hurricanes that took place in 1992 and
// return a hurricane track with the highest wind speed in each category
const query = new TopFeaturesQuery({
  outFields: ["STAGE, WINDSPEED, PRESSURE"],
  topFilter: new TopFilter({
    topCount: 1,
    groupByFields: ["STAGE"],
    orderByFields: ["WINDSPEED DESC"]
  }),
  timeExtent: {
    start: new Date(1992, 0, 1),
    end: new Date(1992, 11, 31)
  }
});
featureLayer.queryTopFeatures(query)
  .then(function(response){
     // returns a hurricane with the highest wind speed
     // in each stage... the query will only run against
    // hurricanes  that happened in 1992
   });

相關用法


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