import Zondy from '../Zondy'
/**
* 草图数据类型
* @readonly
* @enum {Number}
*/
const SketchDataType = Object.freeze({
/** 点类型 */
POINT: 0,
/** 线类型 */
POLYLINE: 1,
/** 区类型 */
POLYGON: 2,
/** 圆类型 */
CIRCLE: 3,
/** 矩形类型 */
RECTANGLE: 4
})
Zondy.Enum.SketchDataType = SketchDataType
export default SketchDataType
