具有明确开始和结束的时间段。时间范围用于显示或查询位于指定时间段内的要素。要表示瞬时时间,请将开始和结束时间设置为同一日期。
创建 JavaScript 日期时,请注意,大多数构造函数将创建相对于本地时区而不是 UTC (即通用时间) 的日期。若要创建相对于 UTC 的日期,请在 Date 对象上使用 UTC 方法。
// Represents the data for the month of Jan, 1970
const timeExtent = new TimeExtent({
start: new Date(Date.UTC(1970, 0, 1, 6, 30)),
end: new Date(Date.UTC(1970, 0, 31, 6, 30))
});
构造函数
属性概述
名称 | 类型 | 描述 | 类 |
---|---|---|---|
String | 类的名称。 更多详情 | Accessor | |
Date | 时间范围的结束时间。 更多详情 | TimeExtent | |
Date | 时间范围的开始时间。 更多详情 | TimeExtent |
属性详细信息
-
类的名称。声明的类名称格式化为
geoscene.folder.className
。
-
end Date
-
时间范围的结束时间。
- 默认值:null
-
start Date
-
时间范围的开始时间。
- 默认值:null
方法概述
名称 | 返回值类值 | 描述 | 类 |
---|---|---|---|
添加一个或多个与对象的生命周期相关联的句柄。 更多详情 | Accessor | ||
TimeExtent | 创建 TimeExtent 对象的深度克隆。 更多详情 | TimeExtent | |
TimeExtent | 展开 TimeExtent,以便将开始日期和结束日期分别向下和向上舍入到分析的时间单位。 更多详情 | TimeExtent | |
* | 创建此类的新实例并使用从 GeoScene 产品生成的 JSON 对象值对其进行初始化。 更多详情 | TimeExtent | |
Boolean | 如果存在指定的句柄组,则返回 true。 更多详情 | Accessor | |
TimeExtent | 返回由给定时间范围和解析后的时间范围的交集产生的时间范围。 更多详情 | TimeExtent | |
移除对象拥有的句柄组。 更多详情 | Accessor | ||
Object | 将此类的实例转换为 GeoScene Portal JSON 表示。 更多详情 | TimeExtent | |
TimeExtent | 返回由当前时间范围和给定时间范围的并集产生的时间范围。 更多详情 | TimeExtent |
方法详细说明
-
addHandles(handleOrHandles, groupKey)inherited起始版本:GeoScene Maps SDK for JavaScript 4.25
-
添加一个或多个与对象的生命周期相关联的句柄。当对象被销毁时,将移除句柄。
// Manually manage handles const handle = reactiveUtils.when( () => !view.updating, () => { wkidSelect.disabled = false; }, { once: true } ); // Handle gets removed when the object is destroyed. this.addHandles(handle);
参数handleOrHandles WatchHandle|WatchHandle[]对象销毁后,标记为要移除的句柄。
groupKey *optional标识句柄应添加到的组的键。组中的所有句柄稍后都可使用 Accessor.removeHandles() 进行删除。如果未提供键,则句柄将被添加到默认组。
-
clone(){TimeExtent}
-
创建 TimeExtent 对象的深度克隆。
返回类型 描述 TimeExtent TimeExtent 对象的新实例,其等于用于调用 .clone()
的对象。
-
expandTo(unit){TimeExtent}起始版本:GeoScene Maps SDK for JavaScript 4.18
-
展开 TimeExtent,以便将开始日期和结束日期分别向下和向上舍入到分析的时间单位。
参数unit String用于对齐开始日期和结束日期的时间单位。
可能值:"milliseconds"|"seconds"|"minutes"|"hours"|"days"|"weeks"|"months"|"years"|"decades"|"centuries"
返回类型 描述 TimeExtent 新扩展的 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
-
fromJSON(json){*}static
-
创建此类的新实例并使用从 GeoScene 产品生成的 JSON 对象值对其进行初始化。传入到输入
json
参数的对象通常来自对 REST API 中查询操作的响应或来自另一个 GeoScene 产品的 toJSON() 方法。有关何时以及如何使用该函数的详细信息和示例,请参阅指南中的使用 fromJSON() 主题。参数json ObjectGeoScene 格式实例的 JSON 表示。有关各种输入 JSON 对象的结构示例,请参阅 GeoScene REST API 文档。
返回类型 描述 * 返回该类的新实例。
-
起始版本:GeoScene Maps SDK for JavaScript 4.25
-
如果存在指定的句柄组,则返回 true。
参数groupKey *optional组键。
返回类型 描述 Boolean 如果存在指定的句柄组,则返回 true
。示例// Remove a named group of handles if they exist. if (obj.hasHandles("watch-view-updates")) { obj.removeHandles("watch-view-updates"); }
-
intersection(timeExtent){TimeExtent}起始版本:GeoScene Maps SDK for JavaScript 4.12
-
参数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"); }); }
-
removeHandles(groupKey)inherited起始版本:GeoScene Maps SDK for JavaScript 4.25
-
移除对象拥有的句柄组。
参数groupKey *optional要移除的组键或组键的数组或集合。
示例obj.removeHandles(); // removes handles from default group obj.removeHandles("handle-group"); obj.removeHandles("other-handle-group");
-
toJSON(){Object}
-
将此类的实例转换为 GeoScene Portal JSON 表示。有关详细信息,请参阅使用 fromJSON() 指南主题。
返回类型 描述 Object 此类实例的 GeoScene Portal JSON 表示。
-
union(timeExtent){TimeExtent}起始版本:GeoScene Maps SDK for JavaScript 4.18
-
返回由当前时间范围和给定时间范围的并集产生的时间范围。
参数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"