constant.js 1.2 KB

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