constants.ts 329 B

123456789101112131415161718
  1. export const defaultLineStyle = {
  2. stroke: '#52FFDA',
  3. strokeWidth: 3,
  4. closed: true,
  5. // fill: '#ff0000',
  6. };
  7. export const defaultCircleStyle = {
  8. /** 圆的半径 */
  9. radius: 4,
  10. /** 点击区域 */
  11. hitStrokeWidth: 10,
  12. fill: '#52FFDA',
  13. draggable: true,
  14. };
  15. export const GROUP_NAME = 'fenceGroup';