cellsysBase/cellsysMap.js

26 lines
432 B
JavaScript
Raw Normal View History

2024-08-14 16:20:56 +08:00
/**
* @Author YuanWei
* @Date 2020/11/17 14:53:56
* @FileName cellsysMap.js
* @Description: cellsys地图模块常量定义
*/
/**
* geometry定义即图层要素类型定义
* @type {{Line: number, Point: number, Polygon: number}}
*/
export const CellsysGeometry = {
/**
* 标记
*/
Point: 0,
/**
* 线路线
*/
Line: 1,
/**
* 区域
*/
Polygon: 2
}