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


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


基本信息

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

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

expandTo (unit) {TimeExtent}


自從:ArcGIS 適用於 JavaScript 4.18 的 API

擴展TimeExtent,以便開始日期和結束日期分別向下和向上舍入到解析的時間單位。

參數:

類型說明
unit String

對齊開始日期和結束日期的時間單位。

可能的值"milliseconds"|"seconds"|"minutes"|"hours"|"days"|"weeks"|"months"|"years"|"decades"|"centuries"

返回:

類型 說明
TimeExtent 一個新的擴展時間範圍。

例子:

// Expand a time extent to a decade.
const extent = new TimeExtent({
  start: new Date(2012, 3, 5),
  end: new Date(2019, 0, 4)
});
const decade = extent.expandTo("decades");
// decade is: 1/1/2010 to 1/1/2020
// Expand a time extent to the nearest month.
const extent = new TimeExtent({
  start: new Date(2012, 3, 5),
  end: new Date(2019, 0, 4)
});
const expandToMonth = extent.expandTo("months");
// expandToMonth is: 4/1/2012 to 2/1/2019

相關用法


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