TimeInterval

AMD: require(["geoscene/TimeInterval"], (TimeInterval) => { /* 代码 */ });
ESM: import TimeInterval from "@geoscene/core/TimeInterval";
类: geoscene/TimeInterval
继承于: TimeInterval Accessor
起始版本: GeoScene API for JavaScript 4.22

TimeInterval 是一个以十个时间单位(如秒、天或年)之一描述时间长度的类。TimeInterval 由许多类引用,例如 TimeInfo,它由时间感知图层和 TimeSlider 小部件引用。

示例:

构造函数

new TimeInterval(properties)
参数:
properties Object
optional

所有可传入构造函数的属性,请参见属性列表

属性列表

可以设置、检索或监听的属性。参见使用属性
展示继承属性 隐藏继承属性
属性 类型 描述
String更多信息

类名。

更多信息Accessor
String更多信息

时间单位。

更多信息TimeInterval
Number更多信息

时间范围的数值。

更多信息TimeInterval

属性详细说明

declaredClass Stringreadonly inherited

类名。类的名称声明格式为 geoscene.folder.className

unit String

时间单位。

可选值:"milliseconds"|"seconds"|"minutes"|"hours"|"days"|"weeks"|"months"|"years"|"decades"|"centuries"

默认值:milliseconds
示例代码:
const featureLayer = new FeatureLayer({
  url: "https://sampleserver6.arcgisonline.com/arcgis/rest/services/Earthquakes_Since1970/MapServer/0"
});
featureLayer.load().then(function(){
  const interval = featureLayer.timeInfo.interval;
  console.log("The layer's time interval is ", interval.value, interval.unit);
});
value Number

时间范围的数值。

默认值:0
示例代码:
const featureLayer = new FeatureLayer({
  url: "https://sampleserver6.arcgisonline.com/arcgis/rest/services/Earthquakes_Since1970/MapServer/0"
});
featureLayer.load().then(function(){
  const interval = featureLayer.timeInfo.interval;
  console.log("The layer's time interval is ", interval.value, " ", interval.unit);
});

方法列表

属性 返回值类型 描述
TimeInterval更多信息

创建 TimeInterval 对象的深拷贝。

更多信息TimeInterval
*更多信息

创建此类的新实例,并使用从 GeoScene 产品生成的 JSON 对象的值对其进行初始化。

更多信息TimeInterval
Object更多信息

将此类的实例转换为其 GeoScene门户 JSON 表示形式。

更多信息TimeInterval

方法详细说明

clone(){TimeInterval}

创建 TimeInterval 对象的深拷贝。

返回值:
类型 描述
TimeInterval TimeInfo 对象的新实例,该对象等于用于调用.clone()的对象。
fromJSON(json){*}static

创建此类的新实例,并使用从 GeoScene 产品生成的 JSON 对象的值对其进行初始化。传递到输入参数中的json对象通常来自对 REST API 中的查询操作的响应或来自其他 GeoScene 产品的 toJSON()方法。有关何时以及如何使用此功能的详细信息和示例,请参阅指南中的使用 fromJSON()主题。

参数:
json Object

实例的 JSON 表示形式,采用 GeoScene 格式。有关各种输入 JSON 对象的结构示例,请参阅 GeoScene REST API 文档

返回值:
类型 描述
* 返回一个该类的新实例。
toJSON(){Object}

将此类的实例转换为其 GeoScene 门户 JSON 表示形式。有关详细信息,请参阅使用 fromJSON() 指南主题。

返回值:
类型 描述
Object 此类实例的 GeoScene 门户 JSON 表示形式。

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.