GroundPolylineGeometry

new Cesium.GroundPolylineGeometry (options)

对地形或 3D 瓦片上的多段线的描述。仅与 GroundPolylinePrimitive 一起使用。
Name Type Description
options Object 具有以下属性的选项:
姓名 类型 默认 描述
positions 数组。< 笛卡尔3 > 定义折线点的 Cartesian3 数组。椭球上方的高度将被忽略。
width 数字 1.0 可选 屏幕空间宽度(以像素为单位)。
granularity 数字 9999.0 可选 用于插值 options.points 的距离间隔(以米为单位)。默认为 9999.0 米。零表示没有插值。
loop 布尔值 false 可选 在几何创建期间是否将在最后一条线位置和第一条线位置之间添加一条线段,以使此折线成为一个循环。
arcType 弧型 ArcType.GEODESIC 可选 折线段必须遵循的线类型。有效选项是 ArcType.GEODESIC ArcType.RHUMB
Throws:
Example:
const positions = Cesium.Cartesian3.fromDegreesArray([
  -112.1340164450331, 36.05494287836128,
  -112.08821010582645, 36.097804071380715,
  -112.13296079730024, 36.168769146801104
]);

const geometry = new Cesium.GroundPolylineGeometry({
  positions : positions
});
See:

Members

折线必须遵循的路径类型。有效选项是 ArcType.GEODESIC ArcType.RHUMB
Default Value: ArcType.GEODESIC
用于插值 options.points 的距离间隔。零表示没有插值。默认值 9999.0 允许 32 位浮点的厘米精度。
Default Value: 9999.0
在几何创建期间,是否将在最后一条线位置和第一条线位置之间添加一条线段以使此折线成为一个循环。如果几何图形有两个位置,则此参数将被忽略。
Default Value: false
屏幕空间宽度(以像素为单位)。

Methods

static Cesium.GroundPolylineGeometry.pack (value, array, startingIndex ) Array.<Number>

将提供的实例存储到提供的数组中。
Name Type Default Description
value PolygonGeometry 要打包的值。
array Array.<Number> 要打包的数组。
startingIndex Number 0 可选 开始打包元素的数组索引。
Returns:
装入的数组

static Cesium.GroundPolylineGeometry.unpack (array, startingIndex , result )

从打包数组中检索实例。
Name Type Default Description
array Array.<Number> 打包的数组。
startingIndex Number 0 可选 要解包的元素的起始索引。
result PolygonGeometry 可选 存储结果的对象。