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


JavaScript ArcGIS TimeExtent.intersection用法及代碼示例


基本信息

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

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

ESM: import TimeExtent from "@arcgis/core/TimeExtent";

類: esri/TimeExtent

繼承: TimeExtent > Accessor

自從:用於 JavaScript 4.11 的 ArcGIS API

用法說明

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

intersection (timeExtent) {TimeExtent}


自從:ArcGIS 適用於 JavaScript 4.12 的 API

返回給定時間範圍與解析時間範圍相交所產生的時間範圍。如果兩個時間範圍不相交,則返回一個 timeExtent,其中開始和結束屬性的值為 undefined

參數:

類型說明
timeExtent TimeExtent

要與調用intersection() 的時間範圍相交的時間範圍。

返回:

類型 說明
TimeExtent 兩個時間範圍之間的相交時間範圍。

例子:

// get the intersecting timeExtent between view.timeExtent and
// layer view filter's timeExtent
const timeExtent = view.timeExtent.intersection(layerView.effect.filter.timeExtent);
if (timeExtent){
  console.log("time intersection", timeExtent);
  const query = layerView.createQuery();
  query.timeExtent = timeExtent;
  layerView.queryFeatures(query).then(function(results){
    console.log(results.features.length, " are returned for intersecting timeExtent");
  });
}

相關用法


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