TimeInterval 是一个以十个时间单位(如秒、天或年)之一描述时间长度的类。TimeInterval 由许多类引用,例如 TimeInfo,它由时间感知图层和 TimeSlider 小部件引用。
- 示例:
构造函数
属性列表
属性 | 类型 | 描述 | 类 | |
---|---|---|---|---|
String | 更多信息 类名。 | 更多信息 | Accessor | |
String | 更多信息 时间单位。 | 更多信息 | TimeInterval | |
Number | 更多信息 时间范围的数值。 | 更多信息 | TimeInterval |
属性详细说明
-
类名。类的名称声明格式为
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 表示形式。