CompositeProperty

new Cesium.CompositeProperty ()

TimeIntervalCollection 定义的 属性 ,其中每个 TimeInterval 的data属性是另一个Property实例,它是在规定的时间进行评估。
Example:
var constantProperty = ...;
var sampledProperty = ...;

//Create a composite property from two previously defined properties
//where the property is valid on August 1st, 2012 and uses a constant
//property for the first half of the day and a sampled property for the
//remaining half.
var composite = new Cesium.CompositeProperty();
composite.intervals.addInterval(Cesium.TimeInterval.fromIso8601({
    iso8601 : '2012-08-01T00:00:00.00Z/2012-08-01T12:00:00.00Z',
    data : constantProperty
}));
composite.intervals.addInterval(Cesium.TimeInterval.fromIso8601({
    iso8601 : '2012-08-01T12:00:00.00Z/2012-08-02T00:00:00.00Z',
    isStartIncluded : false,
    isStopIncluded : false,
    data : sampledProperty
}));
See:

Members

获取每当此属性的定义更改时引发的事件。每当使用不同的数据调用setValue时,定义都会更改比当前值。
获取时间间隔集合。

readonly isConstant : Boolean

获取一个值,该值指示此属性是否恒定。考虑财产如果getValue对于当前定义始终返回相同的结果,则为常数。

Methods

equals ( other ) Boolean

将此属性与提供的属性进行比较并返回如果相等,则为 true ,否则为 false
Name Type Description
other Property 可选 另一个属性。
Returns:
真正 如果左右相等 除此以外。

getValue (time, result ) Object

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