UIEvents.js 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. const UIEvents = {
  2. // 画线
  3. Line: "line",
  4. // 图例
  5. Img: "backgroundImage",
  6. // 测量
  7. MeasureLine: "measure",
  8. // 文字
  9. Text: "text", //这个是标注,暂时这样
  10. // 放大镜
  11. magnifier: "magnifier",
  12. // ----------道路------------
  13. // 单向单车道直路
  14. OneEdgeOneLanRoad: "OneEdgeOneLanRoad",
  15. // 单向双车道直路
  16. OneEdgeTwoLanRoad: "OneEdgeTwoLanRoad",
  17. // 单向三车道直路
  18. OneEdgeThreeLanRoad: "OneEdgeTwoLanRoad",
  19. // 双向单车道直路
  20. TwoEdgeOneLanRoad: "TwoEdgeOneLanRoad",
  21. // 双向双车道直路
  22. TwoEdgeTwoLanRoad: "TwoEdgeTwoLanRoad",
  23. // 双向三车道直路
  24. TwoEdgeThreeLanRoad: "TwoEdgeThreeLanRoad",
  25. // ----------道路结构-----------
  26. // 支路
  27. BranchRoad: "BranchRoad",
  28. // 窄路
  29. NarrowRoad: "NarrowRoad",
  30. // 路肩
  31. ShoulderRoad: "ShoulderRoad",
  32. // 斑马线
  33. ZebraCrossing: "ZebraCrossing",
  34. // 桥
  35. Bridge: "Bridge",
  36. // 隧道
  37. Tunnel: "Tunnel",
  38. // 人行道
  39. Sidewalk: "Sidewalk",
  40. // 施工路段
  41. ConstructionSection: "ConstructionSection",
  42. // 下坡
  43. Downhill: "Downhill",
  44. // 上坡
  45. Uphill: "Uphill",
  46. // 路边水沟
  47. RoadsideGutter: "RoadsideGutter",
  48. // 道路与铁
  49. RoadsAndRails: "RoadsAndRails",
  50. // 消火栓井
  51. FireHydrantWell: "FireHydrantWell",
  52. // 雨水口
  53. Gullies: "Gullies",
  54. // 路面凹坑
  55. RoadPotholes: "RoadPotholes",
  56. // 路面凸出
  57. ProtrudingRoad: "ProtrudingRoad",
  58. // 路面积水
  59. WaterOnTheRoad: "WaterOnTheRoad",
  60. // ----------道路模板-----------
  61. // s型弯路
  62. SBend: "SBend",
  63. // 丁字路口
  64. TJunction: "TJunction",
  65. // 五岔路口
  66. FiveForks: "FiveForks",
  67. // 出口匝道
  68. ExitRamp: "ExitRamp",
  69. // 十字路口
  70. Crossroads: "Crossroads",
  71. // 国道(路肩)
  72. NationalHighwayShoulder: "NationalHighwayShoulder",
  73. // 室内路段
  74. IndoorSection: "IndoorSection",
  75. // 弯道
  76. Bend: "Bend",
  77. // 急转弯道
  78. SharpCurve: "SharpCurve",
  79. // 六岔路口
  80. SixForkIntersection: "SixForkIntersection",
  81. // 宽变窄路段
  82. WideNarrowRoad: "WideNarrowRoad",
  83. // 直角弯道
  84. Corner: "Corner",
  85. // 进口砸到
  86. ImportSmashedRoad: "ImportSmashedRoad",
  87. // 高速收费站
  88. HighSpeedTollBooth: "HighSpeedTollBooth",
  89. // 高速港湾
  90. HighSpeedHarbor: "HighSpeedHarbor",
  91. // 高速路段
  92. HighwaySection: "HighwaySection",
  93. // ------------控制方法----------
  94. // 回退
  95. GoBack: "GoBack",
  96. // 前进
  97. GoAhead: "GoAhead",
  98. // 清除
  99. Clear: "clear",
  100. // 底图开
  101. BasemapOpen: "BasemapOpen",
  102. // 底图关
  103. BasemapClose: "BasemapClose",
  104. // ------------选中组件时的UI控制-----------
  105. // 加控制点
  106. AddControlPoint: "AddControlPoint",
  107. // 减控制点
  108. MinusControlPoint: "MinusControlPoint",
  109. // 复制
  110. Copy: "copy",
  111. // 删除
  112. Delete: "delete",
  113. // 单实线
  114. SingleSolidLine: "SingleSolidLine",
  115. // 单虚线
  116. SingleDashedLine: "SingleDashedLine",
  117. // 双实线
  118. DoubleSolidLine: "DoubleSolidLine",
  119. // 双虚线
  120. DoubleDashedLine: "DoubleDashedLine",
  121. // 折线
  122. BrokenLine: "BrokenLine",
  123. // 点画线
  124. PointDrawLine: "PointDrawLine",
  125. // 绿化带
  126. Greenbelt: "Greenbelt",
  127. // 加粗
  128. Bold: "Bold",
  129. // 变细
  130. Thinning: "Thinning",
  131. // 加支路
  132. AddBranchRoad: "AddBranchRoad",
  133. // 加窄路
  134. AddNarrowRoad: "AddNarrowRoad",
  135. // 加车道
  136. AddLane: "AddLane",
  137. // 减车道
  138. DelLane: "DelLane",
  139. Road: "road",
  140. CurveRoad: "curveRoad",
  141. };
  142. // export const Furnitures = {
  143. // TV: UIEvents.TV, //电视
  144. // CombinationSofa: UIEvents.CombinationSofa, //组合沙发
  145. // SingleSofa: UIEvents.SingleSofa, //单人沙发
  146. // TeaTable: UIEvents.TeaTable, //茶几
  147. // Carpet: UIEvents.Carpet, //地毯
  148. // Plant: UIEvents.Plant, //植物
  149. // DiningTable: UIEvents.DiningTable, //餐桌
  150. // DoubleBed: UIEvents.DoubleBed, //双人床
  151. // SingleBed: UIEvents.SingleBed, //单人床
  152. // Wardrobe: UIEvents.Wardrobe, //衣柜
  153. // Dresser: UIEvents.Dresser, //梳妆台
  154. // BedsideCupboard: UIEvents.BedsideCupboard, //床头柜
  155. // Pillow: UIEvents.Pillow, //抱枕
  156. // GasStove: UIEvents.GasStove, //燃气灶
  157. // Cupboard: UIEvents.Cupboard, //橱柜
  158. // Bathtub: UIEvents.Bathtub, //浴缸
  159. // Closestool: UIEvents.Closestool, //马桶
  160. // Washstand: UIEvents.Washstand, //洗漱台
  161. // Desk: UIEvents.Desk, //书桌
  162. // BalconyChair: UIEvents.BalconyChair, //阳台椅
  163. // Elevator: UIEvents.Elevator, //电梯
  164. // };
  165. export default UIEvents;