当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。