constant.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.SIZE_STYLE = void 0;
  4. /**
  5. * 尺寸配置
  6. */
  7. exports.SIZE_STYLE = {
  8. default: {
  9. sizeStyle: {
  10. width: 44,
  11. height: 22,
  12. radius: 11,
  13. },
  14. tagStyle: {
  15. textStyle: {
  16. fontSize: 12,
  17. lineHeight: 16,
  18. fill: '#fff',
  19. },
  20. padding: 0,
  21. },
  22. markerStyle: {
  23. size: 11,
  24. },
  25. },
  26. small: {
  27. sizeStyle: {
  28. width: 28,
  29. height: 16,
  30. radius: 8,
  31. },
  32. tagStyle: {
  33. textStyle: {
  34. fontSize: 10,
  35. lineHeight: 14,
  36. fill: '#fff',
  37. },
  38. padding: 0,
  39. },
  40. markerStyle: {
  41. size: 8,
  42. },
  43. },
  44. mini: {
  45. sizeStyle: {
  46. width: 20,
  47. height: 14,
  48. radius: 7,
  49. },
  50. tagStyle: {
  51. textStyle: {
  52. fontSize: 7,
  53. lineHeight: 10,
  54. fill: '#fff',
  55. },
  56. padding: 0,
  57. },
  58. markerStyle: {
  59. size: 7,
  60. },
  61. },
  62. };
  63. //# sourceMappingURL=constant.js.map