new Cesium.Primitive({
geometryInstances: new Cesium.GeometryInstance({
geometry: new Cesium.PolylineGeometry({
positions: Cesium.Cartesian3.fromDegreesArrayHeights([
-84.0,
50.0,
0.0,
-100.0,
30.0,
1000000.0,
]),
width: 5.0,
vertexFormat: Cesium.PolylineMaterialAppearance.VERTEX_FORMAT,
arcType: Cesium.ArcType.NONE,
}),
attributes: {
color: Cesium.ColorGeometryInstanceAttribute.fromColor(
Cesium.Color.BLUE
),
},
}),
appearance: new Cesium.PolylineMaterialAppearance({
material: Cesium.Material.fromType(Cesium.Material.PolylineDashType, {
color: Cesium.Color.CYAN,
dashLength: 10,
}),
}),
})
10-13
5241