GeoPoint3D

new Cesium.GeoPoint3D(options)

三维地理点几何对象类。该类用于表示点状地理要素 Feature3D 的空间信息,当赋予点状地理要素 Feature3D 一定风格时,即可将点状地理要素显示在三维场景中,它的空间位置就由 GeoPoint3D 决定。它与 Point3D 的区别是:Point3D 只能描述一个位置点。
Name Type Description
options Object optional Contains the following attributes:
Name Type Default Description
x Number 0.0 optional 三维地理点几何对象的 X 坐标值,即经度坐标,单位:度。
y Number 0.0 optional The Y coordinate value of the 3D geographic point geometry object, that is, the latitude coordinate, in degrees.
z Number 0.0 optional The Z coordinate value of the 3D geographic point geometry object, that is, the height, in meters.

Members

X : Number

Gets or sets the X coordinate value of the 3D geographic point geometry object, that is, the longitude coordinate, in degrees.
Default Value: 0.0

Y : Number

Gets or sets the Y coordinate value of the 3D geographic point geometry object, that is, the latitude coordinate, in degrees.
Default Value: 0.0

Z : Number

Gets or sets the Z coordinate value of the 3D geographic point geometry object, that is, the height, in meters.
Default Value: 0.0