PointGraphics

new Cesium.PointGraphics(options)

Describes a graphical point located at the position of the containing Entity.
Name Type Description
options Object optional Object with the following properties:
Name Type Default Description
color Property Color.WHITE optional A Property specifying the Color of the point.
pixelSize Property 1 optional A numeric Property specifying the size in pixels.
outlineColor Property Color.BLACK optional A Property specifying the Color of the outline.
outlineWidth Property 0 optional A numeric Property specifying the the outline width in pixels.
show Property true optional A boolean Property specifying the visibility of the point.
scaleByDistance Property optional A NearFarScalar Property used to scale the point based on distance.
translucencyByDistance Property optional A NearFarScalar Property used to set translucency based on distance from the camera.

Members

Gets or sets the Property specifying the Color of the point.
Default Value: Color.WHITE

readonlydefinitionChanged : Event

Gets the event that is raised whenever a property or sub-property is changed or modified.
Gets or sets the Property specifying the Color of the outline.
Default Value: Color.BLACK
Gets or sets the numeric Property specifying the the outline width in pixels.
Default Value: 0
Gets or sets the numeric Property specifying the size in pixels.
Default Value: 1
Gets or sets the NearFarScalar Property used to scale the point based on distance. If undefined, a constant size is used.
Gets or sets the boolean Property specifying the visibility of the point.
Default Value: true

translucencyByDistance : Property

Gets or sets NearFarScalar Property specifying the translucency of the point based on the distance from the camera. A point's translucency will interpolate between the NearFarScalar#nearValue and NearFarScalar#farValue while the camera distance falls within the upper and lower bounds of the specified NearFarScalar#near and NearFarScalar#far. Outside of these ranges the points's translucency remains clamped to the nearest bound.

Methods

Duplicates this instance.
Name Type Description
result PointGraphics optional The object onto which to store the result.
Returns:
The modified result parameter or a new instance if one was not provided.
Assigns each unassigned property on this object to the value of the same property on the provided source object.
Name Type Description
source PointGraphics The object to be merged into this object.