new Polyline()
A renderable polyline. Create this by calling
PolylineCollection#add
Name | Type | Default | Description |
---|---|---|---|
options.show |
Boolean |
true
|
optional
true if this polyline will be shown; otherwise, false . |
options.width |
Number |
1.0
|
optional The width of the polyline in pixels. |
options.loop |
Boolean |
false
|
optional Whether a line segment will be added between the last and first line positions to make this line a loop. |
options.material |
Material |
Material.ColorType
|
optional The material. |
options.positions |
Cartesian3[] | optional The positions. | |
options.id |
Object | optional The user-defined object to be returned when this polyline is picked. |
Demo:
See:
Source:
Scene/Polyline.js, line 43
Members
-
id :Object
-
Gets or sets the user-defined object returned when the polyline is picked.Source: Scene/Polyline.js, line 258
-
loop :Boolean
-
Gets and sets whether a line segment will be added between the first and last polyline positions.Source: Scene/Polyline.js, line 224
-
material :Material
-
Gets and sets the surface appearance of the polyline. This can be one of several built-in
Material
objects or a custom material, scripted with Fabric.Source: Scene/Polyline.js, line 177 -
positions :Cartesian3[]
-
Gets and sets the positions of the polyline.
Example:
polyline.positions = ellipsoid.cartographicArrayToCartesianArray([ new Cesium.Cartographic(...), new Cesium.Cartographic(...), new Cesium.Cartographic(...) ]);
Source: Scene/Polyline.js, line 142 -
show :Boolean
-
Determines if this polyline will be shown. Use this to hide or show a polyline, instead of removing it and re-adding it to the collection.Source: Scene/Polyline.js, line 113
-
width :Number
-
Gets and sets the width of the polyline.Source: Scene/Polyline.js, line 200