# draw

创建绘制类

# draw options 构造属性

属性 说明 类型 默认值
type 绘制的类型如点线面等 String
options 相关的样式 Object {}
callback 绘制成功后的回调函数 function null

# 加载方式

let draw = new GeowayGlobe.Draw({
  viewer: viewer,
});
draw.create(type, options, callback);
// example:
draw.create(
  "RECT",
  {
    style: {
      material: Cesium.Color.fromCssColorString("#00ffff"),
    },
  },
  (_entity, _positions) => {
    draw.destroy();
  }
);
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16