圆形几何体,用于在cesiumjs中创建圆形。
new Cesium.CircleGeometry(options);
options对象包含以下属性:
center : Cartesian3类型,圆形中心点的位置。radius : Number类型,圆形的半径,以米为单位。height : Number类型可选,圆形的高度,以米为单位。默认值为0。granularity : Number类型可选,圆形的面数。默认值为16。var circle = viewer.entities.add({
    position: Cesium.Cartesian3.fromDegrees(-74.0707383, 40.7117244),
    name: 'Red circle on surface',
    ellipse: {
        semiMinorAxis: 300.0,
        semiMajorAxis: 300.0,
        material: Cesium.Color.RED
    }
});