| 123456789101112131415161718 |
- export const defaultLineStyle = {
- stroke: '#52FFDA',
- strokeWidth: 3,
- closed: true,
- // fill: '#ff0000',
- };
- export const defaultCircleStyle = {
- /** 圆的半径 */
- radius: 4,
- /** 点击区域 */
- hitStrokeWidth: 10,
- fill: '#52FFDA',
- draggable: true,
- };
- export const GROUP_NAME = 'fenceGroup';
|