mirror of https://gitee.com/antv-l7/antv-l7
580 B
580 B
title | order |
---|---|
快速使用 | 1 |
地图绘制组件,支持点、线、面, 圆、矩形、的绘制编辑。
使用
using modules
import { DrawControl } from '@antv/l7-draw';
CDN 版本引用
<head>
<! --引入最新版的L7-Draw -->
<script src="https://unpkg.com/@antv/l7-draw"></script>
</head>
实例化
const control = new DrawControl(scene, option);
scene.addControl(control);
// CDN 引用
const control = new L7.Draw.DrawControl(scene, option);
scene.addControl(control);