DynamicObject

DynamicObject

new

DynamicObject instances are the primary data store for processed data. They are used primarily by the visualizers to create and maintain graphic primitives that represent the DynamicObject's properties at a specific time.

Parameters:
Name Type Argument Description
id String <optional>
A unique identifier for this object. If no id is provided, a GUID is generated.
See:
Source:

Members

:TimeIntervalCollection

The availability, if any, associated with this object. If availability is undefined, it is assumed that this object's other properties will return valid data for any provided time. If availability exists, the objects other properties will only provide valid data if queried within the given interval.

:DynamicBillboard

Gets or sets the billboard.

:DynamicCone

Gets or sets the cone.

:Event

Gets the event that is raised whenever a new property is assigned.

:Property

Gets or sets the description.

:DynamicEllipse

Gets or sets the ellipse.

:DynamicEllipsoid

Gets or sets the ellipsoid.

:String

Gets the unique ID associated with this object.

:DynamicLabel

Gets or sets the label.

:DynamicLabel

Gets or sets the model.

:String

Gets or sets the name of the object. The name is intended for end-user consumption and does not need to be unique.

:Property

Gets or sets the orientation.

:DynamicObject

Gets or sets the parent object.

:DynamicPath

Gets or sets the path.

:DynamicPoint

Gets or sets the point graphic.

:DynamicPolygon

Gets or sets the polygon.

:DynamicPolyline

Gets or sets the polyline.

:PositionProperty

Gets or sets the position.

:Event

Gets the names of all properties registed on this instance.

:DynamicPyramid

Gets or sets the pyramid.

:DynamicRectangle

Gets or sets the rectangle.

:DynamicVector

Gets or sets the vector.

:Property

Gets or sets the vertex positions.

:Cartesian3

Gets or sets the suggested initial offset for viewing this object with the camera. The offset is defined in the east-north-up reference frame.

:DynamicWall

Gets or sets the wall.

Methods

Adds a property to this object. Once a property is added, it can be observed with DynamicObject#definitionChanged and composited with CompositeDynamicObjectCollection

Parameters:
Name Type Description
propertyName The name of the property to add.
Throws:

Given a time, returns true if this object should have data during that time.

Parameters:
Name Type Description
time JulianDate The time to check availability for.
Returns:
true if the object should have data during the provided time, false otherwise.

Assigns each unassigned property on this object to the value of the same property on the provided source object.

Parameters:
Name Type Description
source DynamicObject The object to be merged into this object.

Removed a property previously added with addProperty.

Parameters:
Name Type Description
propertyName The name of the property to remove.
Throws: