TimeIntervalCollectionProperty

new Cesium.TimeIntervalCollectionProperty ()

TimeIntervalCollection 定义的 Property ,其中每个 TimeInterval 的数据属性表示时间值。
Example:
//Create a Cartesian2 interval property which contains data on August 1st, 2012
//and uses a different value every 6 hours.
const composite = new Cesium.TimeIntervalCollectionProperty();
composite.intervals.addInterval(Cesium.TimeInterval.fromIso8601({
    iso8601 : '2012-08-01T00:00:00.00Z/2012-08-01T06:00:00.00Z',
    isStartIncluded : true,
    isStopIncluded : false,
    data : new Cesium.Cartesian2(2.0, 3.4)
}));
composite.intervals.addInterval(Cesium.TimeInterval.fromIso8601({
    iso8601 : '2012-08-01T06:00:00.00Z/2012-08-01T12:00:00.00Z',
    isStartIncluded : true,
    isStopIncluded : false,
    data : new Cesium.Cartesian2(12.0, 2.7)
}));
composite.intervals.addInterval(Cesium.TimeInterval.fromIso8601({
    iso8601 : '2012-08-01T12:00:00.00Z/2012-08-01T18:00:00.00Z',
    isStartIncluded : true,
    isStopIncluded : false,
    data : new Cesium.Cartesian2(5.0, 12.4)
}));
composite.intervals.addInterval(Cesium.TimeInterval.fromIso8601({
    iso8601 : '2012-08-01T18:00:00.00Z/2012-08-02T00:00:00.00Z',
    isStartIncluded : true,
    isStopIncluded : true,
    data : new Cesium.Cartesian2(85.0, 4.1)
}));

Members

获取每当此属性的定义更改时引发的事件。每当使用与当前值不同的数据调用 setValue 时,都会更改定义。
获取区间集合。
获取一个值,该值指示此属性是否为常量。如果 getValue 始终为当前定义返回相同的结果,则将属性视为常量。

Methods

将此属性与提供的属性进行比较,如果相等则返回 true ,否则返回 false
Name Type Description
other Property 可选 其他属性。
Returns:
如果左右相等,则为 true ,否则为 false

getValue (time, result ) Object

在提供的时间获取属性的值。
Name Type Description
time JulianDate 检索值的时间。
result Object 可选 将值存储到其中的对象,如果省略,则创建并返回一个新实例。
Returns:
如果未提供结果参数,则修改结果参数或新实例。