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


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


基本信息

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

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.union函數(或屬性)的定義如下:

union (timeExtent) {TimeExtent}


自從:ArcGIS 適用於 JavaScript 4.18 的 API

返回由當前時間範圍和給定時間範圍聯合產生的時間範圍。

參數:

類型說明
timeExtent TimeExtent

要聯合的時間範圍。

返回:

類型 說明
TimeExtent 當前時間範圍和給定時間範圍的結果並集。

例子:

// Return the union of two time extents. One from 1990 to 2000 and the second from 2010 to 2020.
const decade1 = new TimeExtent({
  start: new Date(1990, 0, 1),
  end: new Date(2000, 0, 1)
});
const decade2 = new TimeExtent({
  start: new Date(2010, 0, 1),
  end: new Date(2020, 0, 1)
});
const union = decade1.union(decade2);
console.log(`The unioned extent starts from year ${union.start.getFullYear()} to ${union.end.getFullYear()}`);
// output: "The unioned extent starts from year 1990 to 2020"

相關用法


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