对地形或 3D 瓦片上的多段线的描述。仅与
       
        
      
         GroundPolylinePrimitive
        
       
       一起使用。
      | Name | Type | Description | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 
           options
           | Object | 具有以下属性的选项: 
 | 
Throws:
- 
 
  DeveloperError : 至少需要两个职位。
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 : ArcType
      折线必须遵循的路径类型。有效选项是
      
       
     
        ArcType.GEODESIC
       
      
      和
      
       
        ArcType.RHUMB
       
      
      。
     - 
      
       Default Value:
      
      
       ArcType.GEODESIC
      
     
      用于插值 options.points 的距离间隔。零表示没有插值。默认值 9999.0 允许 32 位浮点的厘米精度。
     
     - 
      
       Default Value:
      
      
       9999.0
      
     
      在几何创建期间,是否将在最后一条线位置和第一条线位置之间添加一条线段以使此折线成为一个循环。如果几何图形有两个位置,则此参数将被忽略。
     
     - 
      
       Default Value:
      
      
       false
      
     
      屏幕空间宽度(以像素为单位)。
     
     Methods
      将提供的实例存储到提供的数组中。
     
     | Name | Type | Default | Description | 
|---|---|---|---|
| 
          value
          | PolygonGeometry | 要打包的值。 | |
| 
          array
          | Array.<Number> | 要打包的数组。 | |
| 
          startingIndex
          | Number | 
          0
          | 可选 开始打包元素的数组索引。 | 
Returns:
   装入的数组
  
 
     
      从打包数组中检索实例。
     
     | Name | Type | Default | Description | 
|---|---|---|---|
| 
          array
          | Array.<Number> | 打包的数组。 | |
| 
          startingIndex
          | Number | 
          0
          | 可选 要解包的元素的起始索引。 | 
| 
          result
          | PolygonGeometry | 可选 存储结果的对象。 | 
