PlotPoint3D

new Cesium.PlotPoint3D(x, y, z)

A spatial location defined by longitude, latitude, and altitude.
Name Type Default Description
x Number 0.0 optional Longitude in degrees.
y Number 0.0 optional Latitude in degrees.
z Number 0.0 optional The height in meters.

Members

x : Number

Longitude in degrees.
Default Value: 0.0

y : Number

Latitude in degrees.
Default Value: 0.0

z : Number

The height of the ellipsoid in meters.
Default Value: 0.0

Methods

staticCesium.PlotPoint3D.clone(plotPoint3D, result)PlotPoint3D

Copy the PlotPoint3D instance.
Name Type Description
plotPoint3D PlotPoint3D The object to be copied.
result PlotPoint3D optional The object used to store the result.
Returns:
If the modified result parameter is not provided, return a new PlotPoint3D instance; if the provided PlotPoint3D coordinate is undefined, return undefined.

staticCesium.PlotPoint3D.equals(left, right)Boolean

Determine whether two PlotPoint3D objects are equal
Name Type Description
left PlotPoint3D optional The first PlotPoint3D.
right PlotPoint3D optional The second PlotPoint3D.
Returns:
true if left and right are equal, false otherwise.

toString()String

Create a string representing the location point in the format of'(longitude, latitude, altitude)'.
Returns:
A string representing the location point in the format of'(longitude, latitude, altitude)'.