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


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