cellsysBase/cellsysMap.js
2024-08-14 16:20:56 +08:00

26 lines
432 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* @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
}