openatc-components 0.2.80 → 0.2.82

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (487) hide show
  1. package/.babelrc +18 -18
  2. package/.editorconfig +9 -9
  3. package/.eslintignore +5 -5
  4. package/.eslintrc.js +29 -29
  5. package/.postcssrc.js +10 -10
  6. package/README.md +30 -30
  7. package/build/build.js +41 -41
  8. package/build/check-versions.js +54 -54
  9. package/build/package.config.js +58 -58
  10. package/build/package.dev.config.js +107 -107
  11. package/build/package.prod.config.js +160 -160
  12. package/build/utils.js +101 -101
  13. package/build/vue-loader.conf.js +22 -22
  14. package/build/webpack.base.conf.js +114 -114
  15. package/build/webpack.dev.conf.js +95 -95
  16. package/build/webpack.prod.conf.js +149 -149
  17. package/config/dev.env.js +8 -8
  18. package/config/index.js +93 -93
  19. package/config/prod.env.js +5 -5
  20. package/config/test.env.js +7 -7
  21. package/index.html +12 -12
  22. package/package/kisscomps/components/BoardCard/BoardCard.vue +112 -116
  23. package/package/kisscomps/components/BoardCard/index.js +2 -2
  24. package/package/kisscomps/components/ChannelRealtimeIntersection/ChannelRealtimeIntersection.vue +101 -0
  25. package/package/kisscomps/components/ChannelRealtimeIntersection/index.js +2 -0
  26. package/package/kisscomps/components/Channelization/Channelization.vue +584 -584
  27. package/package/kisscomps/components/Channelization/index.js +2 -2
  28. package/package/kisscomps/components/ChannelizationFlowStatistic/ChannelizationFlowStatistic.vue +360 -360
  29. package/package/kisscomps/components/ChannelizationFlowStatistic/index.js +2 -2
  30. package/package/kisscomps/components/ChannelizationWithInterface/ChannelizationWithInterface.vue +518 -518
  31. package/package/kisscomps/components/ChannelizationWithInterface/index.js +2 -2
  32. package/package/kisscomps/components/CommonKanban/CommonKanban.vue +132 -132
  33. package/package/kisscomps/components/CommonKanban/index.js +2 -2
  34. package/package/kisscomps/components/DirectionListConfiguration/DirectionListConfiguration.vue +454 -454
  35. package/package/kisscomps/components/DirectionListConfiguration/index.js +2 -2
  36. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-east-bottom.vue +41 -41
  37. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-east-top.vue +60 -60
  38. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-ewped.vue +105 -105
  39. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-north-left.vue +60 -60
  40. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-north-right.vue +60 -60
  41. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-snped.vue +105 -105
  42. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-south-left.vue +60 -60
  43. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-south-right.vue +60 -60
  44. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-west-bottom.vue +60 -60
  45. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-west-top.vue +60 -60
  46. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-xlped.vue +30 -30
  47. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-xrped.vue +30 -30
  48. package/package/kisscomps/components/DirectionListConfiguration/svg/pedSvg.vue +78 -78
  49. package/package/kisscomps/components/DrawChannelization/drawsvg/basicCoordInfo.vue +181 -181
  50. package/package/kisscomps/components/DrawChannelization/drawsvg/channelizationElements.vue +255 -255
  51. package/package/kisscomps/components/DrawChannelization/drawsvg/detectorAssociatedComponent.vue +152 -152
  52. package/package/kisscomps/components/DrawChannelization/drawsvg/drawElement/TextBox.vue +91 -91
  53. package/package/kisscomps/components/DrawChannelization/drawsvg/drawElement/crossMap.vue +194 -194
  54. package/package/kisscomps/components/DrawChannelization/drawsvg/drawElement/editText.vue +108 -108
  55. package/package/kisscomps/components/DrawChannelization/drawsvg/firstImportCrossmap.vue +51 -51
  56. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/countdownSvg.vue +236 -236
  57. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/detectorChart.vue +247 -247
  58. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/detectorIconSvg.vue +210 -210
  59. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/laneIcon.vue +72 -72
  60. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/motorwayIconSvg.vue +467 -467
  61. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/pedroadIconSvg.vue +230 -230
  62. package/package/kisscomps/components/DrawChannelization/drawsvg/importDialog.vue +74 -74
  63. package/package/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +1005 -1005
  64. package/package/kisscomps/components/DrawChannelization/drawsvg/index.vue +110 -110
  65. package/package/kisscomps/components/DrawChannelization/drawsvg/laneEditPanel.vue +707 -707
  66. package/package/kisscomps/components/DrawChannelization/drawsvg/overlapAssociatedComponent.vue +172 -172
  67. package/package/kisscomps/components/DrawChannelization/drawsvg/phaseAssociatedComponent.vue +172 -172
  68. package/package/kisscomps/components/DrawChannelization/drawsvg/table.vue +99 -99
  69. package/package/kisscomps/components/DrawChannelization/drawsvg/utils/loadutils.js +87 -87
  70. package/package/kisscomps/components/DrawChannelization/drawsvg/utils/phaseDataModel.js +32 -32
  71. package/package/kisscomps/components/DrawChannelization/drawsvg/utils/phasePos.json +20 -20
  72. package/package/kisscomps/components/DrawChannelization/index.js +2 -2
  73. package/package/kisscomps/components/DrawChannelization/phaseDataMgr.js +278 -278
  74. package/package/kisscomps/components/ExpendConfig/ExpendConfig.vue +118 -118
  75. package/package/kisscomps/components/ExpendConfig/index.js +2 -2
  76. package/package/kisscomps/components/FaultDetailModal/FaultDetailModal.vue +178 -178
  77. package/package/kisscomps/components/FaultDetailModal/index.js +2 -2
  78. package/package/kisscomps/components/IntersectionDirectionSelection/IntersectionDirectionSelection.vue +158 -158
  79. package/package/kisscomps/components/IntersectionDirectionSelection/index.js +2 -2
  80. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/CrossRoadsSvg.vue +496 -496
  81. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/CustomRoadsSvg.vue +46 -46
  82. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/PedSectionEWSvg.vue +300 -300
  83. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/PedSectionSNSvg.vue +288 -288
  84. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampEastSvg.vue +391 -391
  85. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampNorthSvg.vue +336 -336
  86. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampSouthSvg.vue +345 -345
  87. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampWestSvg.vue +389 -389
  88. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkClickSvg.vue +1302 -1272
  89. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkSvg.vue +1190 -1190
  90. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeEastRoadsSvg.vue +402 -402
  91. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeNorthRoadsSvg.vue +361 -361
  92. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeSouthRoadsSvg.vue +368 -368
  93. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeWestRoadsSvg.vue +475 -475
  94. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LCrossRoadsSvg.vue +494 -494
  95. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeEastRoadsSvg.vue +401 -401
  96. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeNorthRoadsSvg.vue +360 -360
  97. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeSouthRoadsSvg.vue +367 -367
  98. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeWestRoadsSvg.vue +476 -476
  99. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/refreshSvg.vue +63 -63
  100. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/sidewalk.svg +535 -0
  101. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/busMapSvg.vue +50 -50
  102. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/eastBusSvg.vue +167 -167
  103. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/northBusSvg.vue +168 -168
  104. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/southBusSvg.vue +168 -168
  105. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/westBusSvg.vue +169 -169
  106. package/package/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +1296 -1200
  107. package/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/LphaseIconSvg.vue +197 -197
  108. package/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/phaseIconSvg.vue +196 -196
  109. package/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/rampPhaseIconSvg.vue +122 -122
  110. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/busPos.json +196 -196
  111. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/busPos.left.json +196 -196
  112. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.json +115 -115
  113. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.left.json +115 -115
  114. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/rampPos.json +52 -52
  115. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/sidePos.json +219 -219
  116. package/package/kisscomps/components/IntersectionMap/crossDirection/utils.js +84 -84
  117. package/package/kisscomps/components/IntersectionMap/index.js +2 -2
  118. package/package/kisscomps/components/IntersectionMap/intersectionmap.vue +211 -199
  119. package/package/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +530 -530
  120. package/package/kisscomps/components/IntersectionWithInterface/index.js +2 -2
  121. package/package/kisscomps/components/KanBan/index.js +2 -2
  122. package/package/kisscomps/components/KanBan/kanban.vue +225 -225
  123. package/package/kisscomps/components/MessageBox/index.vue +96 -96
  124. package/package/kisscomps/components/OverLap/OverLap.vue +237 -237
  125. package/package/kisscomps/components/OverLap/index.js +2 -2
  126. package/package/kisscomps/components/PatternOptimize/PatternOptimize.vue +272 -272
  127. package/package/kisscomps/components/PatternOptimize/index.js +2 -2
  128. package/package/kisscomps/components/PatternStatus/PatternStatus.vue +1508 -1561
  129. package/package/kisscomps/components/PatternStatus/index.js +2 -2
  130. package/package/kisscomps/components/PatternWalkSvg/PatternWalkSvg.vue +423 -423
  131. package/package/kisscomps/components/PatternWalkSvg/index.js +2 -2
  132. package/package/kisscomps/components/PhaseDirectionSelect/PhaseDirectionSelect.vue +126 -126
  133. package/package/kisscomps/components/PhaseDirectionSelect/index.js +2 -2
  134. package/package/kisscomps/components/PhaseDirectionText/PhaseDirectionText.vue +106 -106
  135. package/package/kisscomps/components/PhaseDirectionText/index.js +2 -2
  136. package/package/kisscomps/components/PhaseMarker/index.js +6 -6
  137. package/package/kisscomps/components/PhaseMarker/phasemarker.vue +215 -215
  138. package/package/kisscomps/components/PhaseMarker/svg/patternSvg.vue +121 -121
  139. package/package/kisscomps/components/PhaseMarker/svg/phase.vue +60 -60
  140. package/package/kisscomps/components/PhaseMarker/svg/phaseCount.vue +62 -62
  141. package/package/kisscomps/components/PhaseMarker/svg/phaseCountCycle.vue +62 -62
  142. package/package/kisscomps/components/PhaseMarker/svg/phaseSvg.vue +117 -117
  143. package/package/kisscomps/components/SchemeConfig/SchemeConfig.vue +895 -988
  144. package/package/kisscomps/components/SchemeConfig/azimuthlocking/index.vue +360 -356
  145. package/package/kisscomps/components/SchemeConfig/azimuthlocking/utils.js +92 -92
  146. package/package/kisscomps/components/SchemeConfig/closePhaselControlModal/index.vue +210 -206
  147. package/package/kisscomps/components/SchemeConfig/index.js +2 -2
  148. package/package/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +223 -221
  149. package/package/kisscomps/components/SchemeConfig/manualControlModal/index.vue +235 -235
  150. package/package/kisscomps/components/SchemeConfig/manualControlModalNew/controlModelGroup.vue +128 -128
  151. package/package/kisscomps/components/SchemeConfig/manualControlModalNew/icon.vue +426 -426
  152. package/package/kisscomps/components/SchemeConfig/manualControlModalNew/index.vue +851 -820
  153. package/package/kisscomps/components/SchemeConfig/manualControlModalNew/othersIcon.vue +194 -194
  154. package/package/kisscomps/components/SchemeConfig/priorityControl/index.vue +211 -207
  155. package/package/kisscomps/components/SchemeConfig/priorityControl/utils.js +163 -163
  156. package/package/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +275 -275
  157. package/package/kisscomps/components/SchemeConfig/tentativeplancontrolmodal/index.vue +1209 -1205
  158. package/package/kisscomps/components/SelectCrossPhase/index.vue +418 -418
  159. package/package/kisscomps/components/SelectCrossPhase/utils.js +142 -142
  160. package/package/kisscomps/components/StageBord/StageBord.vue +288 -288
  161. package/package/kisscomps/components/StageBord/index.js +2 -2
  162. package/package/kisscomps/components/StageStatus/StageStatus.vue +341 -341
  163. package/package/kisscomps/components/StageStatus/index.js +2 -2
  164. package/package/kisscomps/components/Stages/index.vue +319 -318
  165. package/package/kisscomps/components/SvgIcon/SvgIcon.vue +53 -53
  166. package/package/kisscomps/components/SvgIcon/index.js +2 -2
  167. package/package/kisscomps/components/XRDDirSelector/XRDDirSelector.vue +1041 -1041
  168. package/package/kisscomps/components/XRDDirSelector/index.js +2 -2
  169. package/package/kisscomps/components/XiaoKanban/DirSelector.vue +356 -356
  170. package/package/kisscomps/components/XiaoKanban/index.vue +102 -102
  171. package/package/kisscomps/components/overView/index.vue +699 -699
  172. package/package/kisscomps/components/patternConfig/index.js +2 -2
  173. package/package/kisscomps/components/patternConfig/index.vue +1126 -1126
  174. package/package/kisscomps/components/patternConfig/pattern/patternTable.vue +408 -408
  175. package/package/kisscomps/components/patternConfig/pattern/planChart/model/coordinationModel.js +665 -665
  176. package/package/kisscomps/components/patternConfig/planContent.vue +576 -576
  177. package/package/kisscomps/components/patternConfig/planMenu.vue +329 -329
  178. package/package/kisscomps/components/patternConfig/utils.js +152 -152
  179. package/package/kisscomps/components/patternList/index.js +2 -2
  180. package/package/kisscomps/components/patternList/patternList.vue +585 -589
  181. package/package/kisscomps/index.js +125 -123
  182. package/package/kissui.js +216608 -0
  183. package/package/kissui.min.js +1 -1
  184. package/package.json +127 -127
  185. package/src/App.vue +24 -24
  186. package/src/EdgeMgr/EdgeModelBase.js +16 -16
  187. package/src/EdgeMgr/controller/crossDiagramMgr.js +125 -125
  188. package/src/api/authapi.js +31 -31
  189. package/src/api/config.js +21 -21
  190. package/src/api/control.js +106 -106
  191. package/src/api/cross.js +53 -49
  192. package/src/api/device.js +135 -135
  193. package/src/api/fault.js +66 -66
  194. package/src/api/index.js +24 -24
  195. package/src/api/login.js +46 -46
  196. package/src/api/optimize.js +72 -72
  197. package/src/api/param.js +165 -165
  198. package/src/api/passwdAssest.js +101 -101
  199. package/src/api/route.js +171 -171
  200. package/src/api/template.js +31 -27
  201. package/src/i18n/index.js +26 -26
  202. package/src/i18n/language/en.js +1437 -1437
  203. package/src/i18n/language/index.js +25 -25
  204. package/src/i18n/language/zh.js +1436 -1436
  205. package/src/icons/demo.css +539 -539
  206. package/src/icons/demo_index.html +8146 -8146
  207. package/src/icons/iconfont.css +1399 -1399
  208. package/src/icons/iconfont.json +2431 -2431
  209. package/src/icons/index.js +20 -20
  210. package/src/icons/svg/azimuthlocking.svg +26 -26
  211. package/src/icons/svg/bendi.svg +110 -110
  212. package/src/icons/svg/bujin.svg +36 -36
  213. package/src/icons/svg/connectBlue.svg +7 -7
  214. package/src/icons/svg/currentvolume.svg +0 -0
  215. package/src/icons/svg/custom-BRTlane.svg +40 -40
  216. package/src/icons/svg/custom-buslane.svg +40 -40
  217. package/src/icons/svg/custom-detector.svg +12 -12
  218. package/src/icons/svg/custom-east-bottom.svg +32 -32
  219. package/src/icons/svg/custom-east-top.svg +32 -32
  220. package/src/icons/svg/custom-ewped.svg +35 -35
  221. package/src/icons/svg/custom-nonmotorizedlane.svg +40 -40
  222. package/src/icons/svg/custom-north-left.svg +32 -32
  223. package/src/icons/svg/custom-north-right.svg +32 -32
  224. package/src/icons/svg/custom-peddetector.svg +17 -17
  225. package/src/icons/svg/custom-snped.svg +35 -35
  226. package/src/icons/svg/custom-south-left.svg +32 -32
  227. package/src/icons/svg/custom-south-right.svg +32 -32
  228. package/src/icons/svg/custom-tramlane.svg +40 -40
  229. package/src/icons/svg/custom-vehiclebranch.svg +40 -40
  230. package/src/icons/svg/custom-vehiclemainroad.svg +41 -41
  231. package/src/icons/svg/custom-west-bottom.svg +32 -32
  232. package/src/icons/svg/custom-west-top.svg +32 -32
  233. package/src/icons/svg/custom-xlped.svg +14 -14
  234. package/src/icons/svg/custom-xrped.svg +14 -14
  235. package/src/icons/svg/cutRed.svg +7 -7
  236. package/src/icons/svg/cycle.svg +0 -0
  237. package/src/icons/svg/dingzhouqi.svg +34 -34
  238. package/src/icons/svg/ganyingkongzhi.svg +30 -30
  239. package/src/icons/svg/guandeng.svg +81 -81
  240. package/src/icons/svg/huangshan.svg +71 -71
  241. package/src/icons/svg/maincontrol.svg +0 -0
  242. package/src/icons/svg/manualcontrolbackground.svg +51 -51
  243. package/src/icons/svg/manualcontrolbackground1.svg +62 -62
  244. package/src/icons/svg/manualcontrolbackgrounden.svg +62 -62
  245. package/src/icons/svg/model.svg +0 -0
  246. package/src/icons/svg/phasediff.svg +0 -0
  247. package/src/icons/svg/prioritycontrol.svg +21 -21
  248. package/src/icons/svg/quanhong.svg +86 -86
  249. package/src/icons/svg/shanghe.svg +11 -11
  250. package/src/icons/svg/shoudong.svg +103 -103
  251. package/src/icons/svg/tentativeplan.svg +28 -28
  252. package/src/icons/svg/time.svg +0 -0
  253. package/src/icons/svg/wuxianlan.svg +46 -46
  254. package/src/icons/svg/xiala.svg +11 -11
  255. package/src/icons/svg/xingrenguojie.svg +33 -33
  256. package/src/icons/svg/xitong.svg +89 -89
  257. package/src/icons/svg/youxian.svg +41 -41
  258. package/src/icons/svg/zizhukongzhi.svg +43 -43
  259. package/src/kisscomps/components/BoardCard/BoardCard.vue +112 -116
  260. package/src/kisscomps/components/BoardCard/index.js +2 -2
  261. package/src/kisscomps/components/ChannelRealtimeIntersection/ChannelRealtimeIntersection.vue +101 -0
  262. package/src/kisscomps/components/ChannelRealtimeIntersection/index.js +2 -0
  263. package/src/kisscomps/components/Channelization/Channelization.vue +584 -584
  264. package/src/kisscomps/components/Channelization/index.js +2 -2
  265. package/src/kisscomps/components/ChannelizationFlowStatistic/ChannelizationFlowStatistic.vue +360 -360
  266. package/src/kisscomps/components/ChannelizationFlowStatistic/index.js +2 -2
  267. package/src/kisscomps/components/ChannelizationWithInterface/ChannelizationWithInterface.vue +518 -518
  268. package/src/kisscomps/components/ChannelizationWithInterface/index.js +2 -2
  269. package/src/kisscomps/components/CommonKanban/CommonKanban.vue +132 -132
  270. package/src/kisscomps/components/CommonKanban/index.js +2 -2
  271. package/src/kisscomps/components/DirectionListConfiguration/DirectionListConfiguration.vue +454 -454
  272. package/src/kisscomps/components/DirectionListConfiguration/index.js +2 -2
  273. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-east-bottom.vue +41 -41
  274. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-east-top.vue +60 -60
  275. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-ewped.vue +105 -105
  276. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-north-left.vue +60 -60
  277. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-north-right.vue +60 -60
  278. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-snped.vue +105 -105
  279. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-south-left.vue +60 -60
  280. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-south-right.vue +60 -60
  281. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-west-bottom.vue +60 -60
  282. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-west-top.vue +60 -60
  283. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-xlped.vue +30 -30
  284. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-xrped.vue +30 -30
  285. package/src/kisscomps/components/DirectionListConfiguration/svg/pedSvg.vue +78 -78
  286. package/src/kisscomps/components/DrawChannelization/drawsvg/basicCoordInfo.vue +181 -181
  287. package/src/kisscomps/components/DrawChannelization/drawsvg/channelizationElements.vue +255 -255
  288. package/src/kisscomps/components/DrawChannelization/drawsvg/detectorAssociatedComponent.vue +152 -152
  289. package/src/kisscomps/components/DrawChannelization/drawsvg/drawElement/TextBox.vue +91 -91
  290. package/src/kisscomps/components/DrawChannelization/drawsvg/drawElement/crossMap.vue +194 -194
  291. package/src/kisscomps/components/DrawChannelization/drawsvg/drawElement/editText.vue +108 -108
  292. package/src/kisscomps/components/DrawChannelization/drawsvg/firstImportCrossmap.vue +51 -51
  293. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/countdownSvg.vue +236 -236
  294. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/detectorChart.vue +247 -247
  295. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/detectorIconSvg.vue +210 -210
  296. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/laneIcon.vue +72 -72
  297. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/motorwayIconSvg.vue +467 -467
  298. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/pedroadIconSvg.vue +230 -230
  299. package/src/kisscomps/components/DrawChannelization/drawsvg/importDialog.vue +74 -74
  300. package/src/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +1005 -1005
  301. package/src/kisscomps/components/DrawChannelization/drawsvg/index.vue +110 -110
  302. package/src/kisscomps/components/DrawChannelization/drawsvg/laneEditPanel.vue +707 -707
  303. package/src/kisscomps/components/DrawChannelization/drawsvg/overlapAssociatedComponent.vue +172 -172
  304. package/src/kisscomps/components/DrawChannelization/drawsvg/phaseAssociatedComponent.vue +172 -172
  305. package/src/kisscomps/components/DrawChannelization/drawsvg/table.vue +99 -99
  306. package/src/kisscomps/components/DrawChannelization/drawsvg/utils/loadutils.js +87 -87
  307. package/src/kisscomps/components/DrawChannelization/drawsvg/utils/phaseDataModel.js +32 -32
  308. package/src/kisscomps/components/DrawChannelization/drawsvg/utils/phasePos.json +20 -20
  309. package/src/kisscomps/components/DrawChannelization/index.js +2 -2
  310. package/src/kisscomps/components/DrawChannelization/phaseDataMgr.js +278 -278
  311. package/src/kisscomps/components/ExpendConfig/ExpendConfig.vue +118 -118
  312. package/src/kisscomps/components/ExpendConfig/index.js +2 -2
  313. package/src/kisscomps/components/FaultDetailModal/FaultDetailModal.vue +178 -178
  314. package/src/kisscomps/components/FaultDetailModal/index.js +2 -2
  315. package/src/kisscomps/components/IntersectionDirectionSelection/IntersectionDirectionSelection.vue +158 -158
  316. package/src/kisscomps/components/IntersectionDirectionSelection/index.js +2 -2
  317. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/CrossRoadsSvg.vue +496 -496
  318. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/CustomRoadsSvg.vue +46 -46
  319. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/PedSectionEWSvg.vue +300 -300
  320. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/PedSectionSNSvg.vue +288 -288
  321. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampEastSvg.vue +391 -391
  322. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampNorthSvg.vue +336 -336
  323. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampSouthSvg.vue +345 -345
  324. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampWestSvg.vue +389 -389
  325. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkClickSvg.vue +1302 -1272
  326. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkSvg.vue +1190 -1190
  327. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeEastRoadsSvg.vue +402 -402
  328. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeNorthRoadsSvg.vue +361 -361
  329. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeSouthRoadsSvg.vue +368 -368
  330. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeWestRoadsSvg.vue +475 -475
  331. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LCrossRoadsSvg.vue +494 -494
  332. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeEastRoadsSvg.vue +401 -401
  333. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeNorthRoadsSvg.vue +360 -360
  334. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeSouthRoadsSvg.vue +367 -367
  335. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeWestRoadsSvg.vue +476 -476
  336. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/refreshSvg.vue +63 -63
  337. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/sidewalk.svg +535 -0
  338. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/busMapSvg.vue +50 -50
  339. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/eastBusSvg.vue +167 -167
  340. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/northBusSvg.vue +168 -168
  341. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/southBusSvg.vue +168 -168
  342. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/westBusSvg.vue +169 -169
  343. package/src/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +1296 -1200
  344. package/src/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/LphaseIconSvg.vue +197 -197
  345. package/src/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/phaseIconSvg.vue +196 -196
  346. package/src/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/rampPhaseIconSvg.vue +122 -122
  347. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/busPos.json +196 -196
  348. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/busPos.left.json +196 -196
  349. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.json +115 -115
  350. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.left.json +115 -115
  351. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/rampPos.json +52 -52
  352. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/sidePos.json +219 -219
  353. package/src/kisscomps/components/IntersectionMap/crossDirection/utils.js +84 -84
  354. package/src/kisscomps/components/IntersectionMap/index.js +2 -2
  355. package/src/kisscomps/components/IntersectionMap/intersectionmap.vue +211 -199
  356. package/src/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +530 -530
  357. package/src/kisscomps/components/IntersectionWithInterface/index.js +2 -2
  358. package/src/kisscomps/components/KanBan/index.js +2 -2
  359. package/src/kisscomps/components/KanBan/kanban.vue +225 -225
  360. package/src/kisscomps/components/MessageBox/index.vue +96 -96
  361. package/src/kisscomps/components/OverLap/OverLap.vue +237 -237
  362. package/src/kisscomps/components/OverLap/index.js +2 -2
  363. package/src/kisscomps/components/PatternOptimize/PatternOptimize.vue +272 -272
  364. package/src/kisscomps/components/PatternOptimize/index.js +2 -2
  365. package/src/kisscomps/components/PatternStatus/PatternStatus.vue +1508 -1561
  366. package/src/kisscomps/components/PatternStatus/index.js +2 -2
  367. package/src/kisscomps/components/PatternWalkSvg/PatternWalkSvg.vue +423 -423
  368. package/src/kisscomps/components/PatternWalkSvg/index.js +2 -2
  369. package/src/kisscomps/components/PhaseDirectionSelect/PhaseDirectionSelect.vue +126 -126
  370. package/src/kisscomps/components/PhaseDirectionSelect/index.js +2 -2
  371. package/src/kisscomps/components/PhaseDirectionText/PhaseDirectionText.vue +106 -106
  372. package/src/kisscomps/components/PhaseDirectionText/index.js +2 -2
  373. package/src/kisscomps/components/PhaseMarker/index.js +6 -6
  374. package/src/kisscomps/components/PhaseMarker/phasemarker.vue +215 -215
  375. package/src/kisscomps/components/PhaseMarker/svg/patternSvg.vue +121 -121
  376. package/src/kisscomps/components/PhaseMarker/svg/phase.vue +60 -60
  377. package/src/kisscomps/components/PhaseMarker/svg/phaseCount.vue +62 -62
  378. package/src/kisscomps/components/PhaseMarker/svg/phaseCountCycle.vue +62 -62
  379. package/src/kisscomps/components/PhaseMarker/svg/phaseSvg.vue +117 -117
  380. package/src/kisscomps/components/SchemeConfig/SchemeConfig.vue +895 -988
  381. package/src/kisscomps/components/SchemeConfig/azimuthlocking/index.vue +360 -356
  382. package/src/kisscomps/components/SchemeConfig/azimuthlocking/utils.js +92 -92
  383. package/src/kisscomps/components/SchemeConfig/closePhaselControlModal/index.vue +210 -206
  384. package/src/kisscomps/components/SchemeConfig/index.js +2 -2
  385. package/src/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +223 -221
  386. package/src/kisscomps/components/SchemeConfig/manualControlModal/index.vue +235 -235
  387. package/src/kisscomps/components/SchemeConfig/manualControlModalNew/controlModelGroup.vue +128 -128
  388. package/src/kisscomps/components/SchemeConfig/manualControlModalNew/icon.vue +426 -426
  389. package/src/kisscomps/components/SchemeConfig/manualControlModalNew/index.vue +851 -820
  390. package/src/kisscomps/components/SchemeConfig/manualControlModalNew/othersIcon.vue +194 -194
  391. package/src/kisscomps/components/SchemeConfig/priorityControl/index.vue +211 -207
  392. package/src/kisscomps/components/SchemeConfig/priorityControl/utils.js +163 -163
  393. package/src/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +275 -275
  394. package/src/kisscomps/components/SchemeConfig/tentativeplancontrolmodal/index.vue +1209 -1205
  395. package/src/kisscomps/components/SelectCrossPhase/index.vue +418 -418
  396. package/src/kisscomps/components/SelectCrossPhase/utils.js +142 -142
  397. package/src/kisscomps/components/StageBord/StageBord.vue +288 -288
  398. package/src/kisscomps/components/StageBord/index.js +2 -2
  399. package/src/kisscomps/components/StageStatus/StageStatus.vue +341 -341
  400. package/src/kisscomps/components/StageStatus/index.js +2 -2
  401. package/src/kisscomps/components/Stages/index.vue +319 -318
  402. package/src/kisscomps/components/SvgIcon/SvgIcon.vue +53 -53
  403. package/src/kisscomps/components/SvgIcon/index.js +2 -2
  404. package/src/kisscomps/components/XRDDirSelector/XRDDirSelector.vue +1041 -1041
  405. package/src/kisscomps/components/XRDDirSelector/index.js +2 -2
  406. package/src/kisscomps/components/XiaoKanban/DirSelector.vue +356 -356
  407. package/src/kisscomps/components/XiaoKanban/index.vue +102 -102
  408. package/src/kisscomps/components/overView/index.vue +699 -699
  409. package/src/kisscomps/components/patternConfig/index.js +2 -2
  410. package/src/kisscomps/components/patternConfig/index.vue +1126 -1126
  411. package/src/kisscomps/components/patternConfig/pattern/patternTable.vue +408 -408
  412. package/src/kisscomps/components/patternConfig/pattern/planChart/model/coordinationModel.js +665 -665
  413. package/src/kisscomps/components/patternConfig/planContent.vue +576 -576
  414. package/src/kisscomps/components/patternConfig/planMenu.vue +329 -329
  415. package/src/kisscomps/components/patternConfig/utils.js +152 -152
  416. package/src/kisscomps/components/patternList/index.js +2 -2
  417. package/src/kisscomps/components/patternList/patternList.vue +585 -589
  418. package/src/kisscomps/index.js +125 -123
  419. package/src/lib/publicjs/ArryListUtil.js +38 -38
  420. package/src/lib/publicjs/HttpurlMgr.js +45 -45
  421. package/src/lib/publicjs/KissApi.js +158 -158
  422. package/src/lib/publicjs/KissWSSub/Heartcheck.js +128 -128
  423. package/src/lib/publicjs/KissWSSub/KissWsSub.js +91 -91
  424. package/src/lib/publicjs/KissWSSub/KissWsSubByType.js +152 -152
  425. package/src/lib/publicjs/KissWSSub/SimuWsSubByType.js +44 -44
  426. package/src/lib/publicjs/KissWSSub/Sub.js +51 -51
  427. package/src/lib/publicjs/KissWSSub/SubChannel.js +119 -119
  428. package/src/lib/publicjs/basecomponents.js +65 -65
  429. package/src/lib/publicjs/localStorage.js +112 -112
  430. package/src/lib/publicjs/objdeepcopy.js +32 -32
  431. package/src/lib/publicjs/pageScroll.js +30 -30
  432. package/src/lib/publicjs/passwdAssest.js +101 -101
  433. package/src/lib/publicjs/styleclassfactory.js +32 -32
  434. package/src/main.js +50 -50
  435. package/src/router/index.js +63 -63
  436. package/src/store/getters.js +16 -16
  437. package/src/store/index.js +26 -26
  438. package/src/store/modules/globalParam.js +67 -67
  439. package/src/utils/ControlFormat.js +68 -68
  440. package/src/utils/RingDataModel.js +258 -258
  441. package/src/utils/auth.js +199 -199
  442. package/src/utils/conflct.js +250 -250
  443. package/src/utils/conflictList.js +87 -87
  444. package/src/utils/dateFormat.js +41 -41
  445. package/src/utils/errorcode.js +228 -228
  446. package/src/utils/fault.js +196 -196
  447. package/src/utils/faultcode.js +209 -209
  448. package/src/utils/index.js +69 -69
  449. package/src/utils/pedphasedesc.js +119 -119
  450. package/src/utils/phaseList.js +203 -203
  451. package/src/utils/phasedesc.js +144 -144
  452. package/src/utils/responseMessage.js +21 -21
  453. package/src/utils/validate.js +43 -43
  454. package/src/views/customchannelization.vue +49 -49
  455. package/src/views/home.1.vue +479 -479
  456. package/src/views/home.vue +93 -93
  457. package/src/views/intersection.vue +413 -365
  458. package/src/views/intersection2.vue +328 -328
  459. package/src/views/overView.vue +41 -41
  460. package/src/views/patternConfig.vue +609 -609
  461. package/src/views/schemeconfig.vue +204 -204
  462. package/static/apiconfig.json +451 -451
  463. package/static/styles/channelizatioon.scss +433 -433
  464. package/static/styles/common.scss +23 -23
  465. package/static/styles/commonkanban.scss +168 -168
  466. package/static/styles/dark/index.scss +2 -2
  467. package/static/styles/dark/theme/element-dark.scss +42 -42
  468. package/static/styles/index.scss +84 -84
  469. package/static/styles/intersection.scss +190 -190
  470. package/static/styles/light/index.scss +2 -2
  471. package/static/styles/light/theme/element-light.scss +42 -42
  472. package/static/styles/overview.scss +146 -146
  473. package/static/styles/patternConfig.scss +56 -56
  474. package/static/styles/schemeconfig.scss +549 -534
  475. package/static/styles/stages.scss +57 -57
  476. package/static/styles/uiComponents.scss +57 -57
  477. package/static/styles/xiaokanban.scss +50 -50
  478. package/static/token.json +2 -2
  479. package/test/e2e/custom-assertions/elementCount.js +27 -27
  480. package/test/e2e/nightwatch.conf.js +46 -46
  481. package/test/e2e/runner.js +48 -48
  482. package/test/e2e/specs/test.js +19 -19
  483. package/test/unit/.eslintrc +7 -7
  484. package/test/unit/jest.conf.js +30 -30
  485. package/test/unit/setup.js +3 -3
  486. package/test/unit/specs/HelloWorld.spec.js +11 -11
  487. package/src/node_modules/.package_versions.json +0 -1
@@ -0,0 +1,535 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 23.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 252.1 250.2" style="enable-background:new 0 0 252.1 250.2;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#606266;}
7
+ .st1{fill:none;}
8
+ </style>
9
+ <g id="西行人">
10
+ <g>
11
+ <rect y="225" class="st0" width="16" height="4"/>
12
+ <rect y="217" class="st0" width="16" height="4"/>
13
+ <rect y="209" class="st0" width="16" height="4"/>
14
+ <rect y="201" class="st0" width="16" height="4"/>
15
+ <rect y="193" class="st0" width="16" height="4"/>
16
+ <rect y="185" class="st0" width="16" height="4"/>
17
+ <rect y="177" class="st0" width="16" height="4"/>
18
+ <rect y="168" class="st0" width="16" height="4"/>
19
+ <rect y="160" class="st0" width="16" height="4"/>
20
+ <rect y="152" class="st0" width="16" height="4"/>
21
+ <rect y="144" class="st0" width="16" height="4"/>
22
+ <rect y="136" class="st0" width="16" height="4"/>
23
+ </g>
24
+ <g>
25
+ <rect y="128" class="st0" width="16" height="4"/>
26
+ <rect y="120" class="st0" width="16" height="4"/>
27
+ </g>
28
+ <g>
29
+ <rect y="112" class="st0" width="16" height="4"/>
30
+ <rect y="104" class="st0" width="16" height="4"/>
31
+ <rect y="96" class="st0" width="16" height="4"/>
32
+ <rect y="88" class="st0" width="16" height="4"/>
33
+ <rect y="80" class="st0" width="16" height="4"/>
34
+ <rect y="71" class="st0" width="16" height="4"/>
35
+ <rect y="63" class="st0" width="16" height="4"/>
36
+ <rect y="55" class="st0" width="16" height="4"/>
37
+ <rect y="47" class="st0" width="16" height="4"/>
38
+ <rect y="39" class="st0" width="16" height="4"/>
39
+ <rect y="31" class="st0" width="16" height="4"/>
40
+ <rect y="23" class="st0" width="16" height="4"/>
41
+ </g>
42
+ <rect x="0.3" y="22.8" class="st1" width="15.8" height="206.2"/>
43
+ </g>
44
+ <g id="西-上下">
45
+ <g id="西行人下">
46
+ <rect y="225" class="st0" width="16" height="4"/>
47
+ <rect y="217" class="st0" width="16" height="4"/>
48
+ <rect y="209" class="st0" width="16" height="4"/>
49
+ <rect y="201" class="st0" width="16" height="4"/>
50
+ <rect y="193" class="st0" width="16" height="4"/>
51
+ <rect y="185" class="st0" width="16" height="4"/>
52
+ <rect y="177" class="st0" width="16" height="4"/>
53
+ <rect y="168" class="st0" width="16" height="4"/>
54
+ <rect y="160" class="st0" width="16" height="4"/>
55
+ <rect y="152" class="st0" width="16" height="4"/>
56
+ <rect y="144" class="st0" width="16" height="4"/>
57
+ <rect y="136" class="st0" width="16" height="4"/>
58
+ <rect x="0" y="135.9" class="st1" width="16.2" height="93.1"/>
59
+ </g>
60
+ <g id="西行人上">
61
+ <rect y="112" class="st0" width="16" height="4"/>
62
+ <rect y="104" class="st0" width="16" height="4"/>
63
+ <rect y="96" class="st0" width="16" height="4"/>
64
+ <rect y="88" class="st0" width="16" height="4"/>
65
+ <rect y="80" class="st0" width="16" height="4"/>
66
+ <rect y="71" class="st0" width="16" height="4"/>
67
+ <rect y="63" class="st0" width="16" height="4"/>
68
+ <rect y="55" class="st0" width="16" height="4"/>
69
+ <rect y="47" class="st0" width="16" height="4"/>
70
+ <rect y="39" class="st0" width="16" height="4"/>
71
+ <rect y="31" class="st0" width="16" height="4"/>
72
+ <rect y="23" class="st0" width="16" height="4"/>
73
+ <rect x="0" y="23" class="st1" width="16" height="92.9"/>
74
+ </g>
75
+ </g>
76
+ <g id="东行人">
77
+ <g>
78
+ <rect x="236" y="225" class="st0" width="16" height="4"/>
79
+ <rect x="236" y="217" class="st0" width="16" height="4"/>
80
+ <rect x="236" y="209" class="st0" width="16" height="4"/>
81
+ <rect x="236" y="201" class="st0" width="16" height="4"/>
82
+ <rect x="236" y="193" class="st0" width="16" height="4"/>
83
+ <rect x="236" y="185" class="st0" width="16" height="4"/>
84
+ <rect x="236" y="177" class="st0" width="16" height="4"/>
85
+ <rect x="236" y="168" class="st0" width="16" height="4"/>
86
+ <rect x="236" y="160" class="st0" width="16" height="4"/>
87
+ <rect x="236" y="152" class="st0" width="16" height="4"/>
88
+ <rect x="236" y="144" class="st0" width="16" height="4"/>
89
+ <rect x="236" y="136" class="st0" width="16" height="4"/>
90
+ </g>
91
+ <g>
92
+ <rect x="236" y="128" class="st0" width="16" height="4"/>
93
+ <rect x="236" y="120" class="st0" width="16" height="4"/>
94
+ </g>
95
+ <g>
96
+ <rect x="236" y="112" class="st0" width="16" height="4"/>
97
+ <rect x="236" y="104" class="st0" width="16" height="4"/>
98
+ <rect x="236" y="96" class="st0" width="16" height="4"/>
99
+ <rect x="236" y="88" class="st0" width="16" height="4"/>
100
+ <rect x="236" y="80" class="st0" width="16" height="4"/>
101
+ <rect x="236" y="71" class="st0" width="16" height="4"/>
102
+ <rect x="236" y="63" class="st0" width="16" height="4"/>
103
+ <rect x="236" y="55" class="st0" width="16" height="4"/>
104
+ <rect x="236" y="47" class="st0" width="16" height="4"/>
105
+ <rect x="236" y="39" class="st0" width="16" height="4"/>
106
+ <rect x="236" y="31" class="st0" width="16" height="4"/>
107
+ <rect x="236" y="23" class="st0" width="16" height="4"/>
108
+ </g>
109
+ <rect x="235.9" y="23.1" class="st1" width="16" height="205.9"/>
110
+ </g>
111
+ <g id="东-上下">
112
+ <g id="东行人下">
113
+ <rect x="236" y="225" class="st0" width="16" height="4"/>
114
+ <rect x="236" y="217" class="st0" width="16" height="4"/>
115
+ <rect x="236" y="209" class="st0" width="16" height="4"/>
116
+ <rect x="236" y="201" class="st0" width="16" height="4"/>
117
+ <rect x="236" y="193" class="st0" width="16" height="4"/>
118
+ <rect x="236" y="185" class="st0" width="16" height="4"/>
119
+ <rect x="236" y="177" class="st0" width="16" height="4"/>
120
+ <rect x="236" y="168" class="st0" width="16" height="4"/>
121
+ <rect x="236" y="160" class="st0" width="16" height="4"/>
122
+ <rect x="236" y="152" class="st0" width="16" height="4"/>
123
+ <rect x="236" y="144" class="st0" width="16" height="4"/>
124
+ <rect x="236" y="136" class="st0" width="16" height="4"/>
125
+ <rect x="235.9" y="135.9" class="st1" width="16.2" height="93.3"/>
126
+ </g>
127
+ <g id="东行人上">
128
+ <rect x="236" y="112" class="st0" width="16" height="4"/>
129
+ <rect x="236" y="104" class="st0" width="16" height="4"/>
130
+ <rect x="236" y="96" class="st0" width="16" height="4"/>
131
+ <rect x="236" y="88" class="st0" width="16" height="4"/>
132
+ <rect x="236" y="80" class="st0" width="16" height="4"/>
133
+ <rect x="236" y="71" class="st0" width="16" height="4"/>
134
+ <rect x="236" y="63" class="st0" width="16" height="4"/>
135
+ <rect x="236" y="55" class="st0" width="16" height="4"/>
136
+ <rect x="236" y="47" class="st0" width="16" height="4"/>
137
+ <rect x="236" y="39" class="st0" width="16" height="4"/>
138
+ <rect x="236" y="31" class="st0" width="16" height="4"/>
139
+ <rect x="236" y="23" class="st0" width="16" height="4"/>
140
+ <rect x="235.9" y="22.8" class="st1" width="16.2" height="93.1"/>
141
+ </g>
142
+ </g>
143
+ <g id="北行人">
144
+ <g>
145
+ <rect x="225" class="st0" width="4" height="16"/>
146
+ <rect x="217" class="st0" width="4" height="16"/>
147
+ <rect x="209" class="st0" width="4" height="16"/>
148
+ <rect x="201" class="st0" width="4" height="16"/>
149
+ <rect x="193" class="st0" width="4" height="16"/>
150
+ <rect x="185" class="st0" width="4" height="16"/>
151
+ <rect x="177" class="st0" width="4" height="16"/>
152
+ <rect x="168" class="st0" width="4" height="16"/>
153
+ <rect x="160" class="st0" width="4" height="16"/>
154
+ <rect x="152" class="st0" width="4" height="16"/>
155
+ <rect x="144" class="st0" width="4" height="16"/>
156
+ <rect x="136" class="st0" width="4" height="16"/>
157
+ </g>
158
+ <g>
159
+ <rect x="128" class="st0" width="4" height="16"/>
160
+ <rect x="120" class="st0" width="4" height="16"/>
161
+ </g>
162
+ <g>
163
+ <rect x="112" class="st0" width="4" height="16"/>
164
+ <rect x="104" class="st0" width="4" height="16"/>
165
+ <rect x="96" class="st0" width="4" height="16"/>
166
+ <rect x="88" class="st0" width="4" height="16"/>
167
+ <rect x="80" class="st0" width="4" height="16"/>
168
+ <rect x="71" class="st0" width="4" height="16"/>
169
+ <rect x="63" class="st0" width="4" height="16"/>
170
+ <rect x="55" class="st0" width="4" height="16"/>
171
+ <rect x="47" class="st0" width="4" height="16"/>
172
+ <rect x="39" class="st0" width="4" height="16"/>
173
+ <rect x="31" class="st0" width="4" height="16"/>
174
+ <rect x="23" class="st0" width="4" height="16"/>
175
+ </g>
176
+ <rect x="23" y="0" class="st1" width="206" height="16"/>
177
+ </g>
178
+ <g id="北-左右">
179
+ <g id="北行人右">
180
+ <rect x="225" class="st0" width="4" height="16"/>
181
+ <rect x="217" class="st0" width="4" height="16"/>
182
+ <rect x="209" class="st0" width="4" height="16"/>
183
+ <rect x="201" class="st0" width="4" height="16"/>
184
+ <rect x="193" class="st0" width="4" height="16"/>
185
+ <rect x="185" class="st0" width="4" height="16"/>
186
+ <rect x="177" class="st0" width="4" height="16"/>
187
+ <rect x="168" class="st0" width="4" height="16"/>
188
+ <rect x="160" class="st0" width="4" height="16"/>
189
+ <rect x="152" class="st0" width="4" height="16"/>
190
+ <rect x="144" class="st0" width="4" height="16"/>
191
+ <rect x="136" class="st0" width="4" height="16"/>
192
+ <rect x="136" class="st1" width="92.9" height="15.9"/>
193
+ </g>
194
+ <g id="北行人左">
195
+ <rect x="112" class="st0" width="4" height="16"/>
196
+ <rect x="104" class="st0" width="4" height="16"/>
197
+ <rect x="96" class="st0" width="4" height="16"/>
198
+ <rect x="88" class="st0" width="4" height="16"/>
199
+ <rect x="80" class="st0" width="4" height="16"/>
200
+ <rect x="71" class="st0" width="4" height="16"/>
201
+ <rect x="63" class="st0" width="4" height="16"/>
202
+ <rect x="55" class="st0" width="4" height="16"/>
203
+ <rect x="47" class="st0" width="4" height="16"/>
204
+ <rect x="39" class="st0" width="4" height="16"/>
205
+ <rect x="31" class="st0" width="4" height="16"/>
206
+ <rect x="23" class="st0" width="4" height="16"/>
207
+ <rect x="22.9" y="0" class="st1" width="93.1" height="16"/>
208
+ </g>
209
+ </g>
210
+ <g id="南行人">
211
+ <g>
212
+ <rect x="225" y="234.2" class="st0" width="4" height="16"/>
213
+ <rect x="217" y="234.2" class="st0" width="4" height="16"/>
214
+ <rect x="209" y="234.2" class="st0" width="4" height="16"/>
215
+ <rect x="201" y="234.2" class="st0" width="4" height="16"/>
216
+ <rect x="193" y="234.2" class="st0" width="4" height="16"/>
217
+ <rect x="185" y="234.2" class="st0" width="4" height="16"/>
218
+ <rect x="177" y="234.2" class="st0" width="4" height="16"/>
219
+ <rect x="168" y="234.2" class="st0" width="4" height="16"/>
220
+ <rect x="160" y="234.2" class="st0" width="4" height="16"/>
221
+ <rect x="152" y="234.2" class="st0" width="4" height="16"/>
222
+ <rect x="144" y="234.2" class="st0" width="4" height="16"/>
223
+ <rect x="136" y="234.2" class="st0" width="4" height="16"/>
224
+ </g>
225
+ <g>
226
+ <rect x="128" y="234.2" class="st0" width="4" height="16"/>
227
+ <rect x="120" y="234.2" class="st0" width="4" height="16"/>
228
+ </g>
229
+ <g>
230
+ <rect x="112" y="234.2" class="st0" width="4" height="16"/>
231
+ <rect x="104" y="234.2" class="st0" width="4" height="16"/>
232
+ <rect x="96" y="234.2" class="st0" width="4" height="16"/>
233
+ <rect x="88" y="234.2" class="st0" width="4" height="16"/>
234
+ <rect x="80" y="234.2" class="st0" width="4" height="16"/>
235
+ <rect x="71" y="234.2" class="st0" width="4" height="16"/>
236
+ <rect x="63" y="234.2" class="st0" width="4" height="16"/>
237
+ <rect x="55" y="234.2" class="st0" width="4" height="16"/>
238
+ <rect x="47" y="234.2" class="st0" width="4" height="16"/>
239
+ <rect x="39" y="234.2" class="st0" width="4" height="16"/>
240
+ <rect x="31" y="234.2" class="st0" width="4" height="16"/>
241
+ <rect x="23" y="234.2" class="st0" width="4" height="16"/>
242
+ </g>
243
+ <rect x="22.6" y="234.1" class="st1" width="206.4" height="16"/>
244
+ </g>
245
+ <g id="南-左右">
246
+ <g id="南行人右">
247
+ <rect x="225" y="234.2" class="st0" width="4" height="16"/>
248
+ <rect x="217" y="234.2" class="st0" width="4" height="16"/>
249
+ <rect x="209" y="234.2" class="st0" width="4" height="16"/>
250
+ <rect x="201" y="234.2" class="st0" width="4" height="16"/>
251
+ <rect x="193" y="234.2" class="st0" width="4" height="16"/>
252
+ <rect x="185" y="234.2" class="st0" width="4" height="16"/>
253
+ <rect x="177" y="234.2" class="st0" width="4" height="16"/>
254
+ <rect x="168" y="234.2" class="st0" width="4" height="16"/>
255
+ <rect x="160" y="234.2" class="st0" width="4" height="16"/>
256
+ <rect x="152" y="234.2" class="st0" width="4" height="16"/>
257
+ <rect x="144" y="234.2" class="st0" width="4" height="16"/>
258
+ <rect x="136" y="234.2" class="st0" width="4" height="16"/>
259
+ <rect x="135.8" y="234.1" class="st1" width="93.2" height="16.1"/>
260
+ </g>
261
+ <g id="南行人左">
262
+ <rect x="112" y="234.2" class="st0" width="4" height="16"/>
263
+ <rect x="104" y="234.2" class="st0" width="4" height="16"/>
264
+ <rect x="96" y="234.2" class="st0" width="4" height="16"/>
265
+ <rect x="88" y="234.2" class="st0" width="4" height="16"/>
266
+ <rect x="80" y="234.2" class="st0" width="4" height="16"/>
267
+ <rect x="71" y="234.2" class="st0" width="4" height="16"/>
268
+ <rect x="63" y="234.2" class="st0" width="4" height="16"/>
269
+ <rect x="55" y="234.2" class="st0" width="4" height="16"/>
270
+ <rect x="47" y="234.2" class="st0" width="4" height="16"/>
271
+ <rect x="39" y="234.2" class="st0" width="4" height="16"/>
272
+ <rect x="31" y="234.2" class="st0" width="4" height="16"/>
273
+ <rect x="23" y="234.2" class="st0" width="4" height="16"/>
274
+ <rect x="23" y="234.1" class="st1" width="92.8" height="16.1"/>
275
+ </g>
276
+ </g>
277
+ <g id="斜杠行人">
278
+ <rect x="78.1" y="163.1" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -97.5394 106.7493)" class="st0" width="4" height="16"/>
279
+ <rect x="83.7" y="157.4" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -91.8395 109.0746)" class="st0" width="4" height="16"/>
280
+ <rect x="89.4" y="151.7" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -86.1395 111.3999)" class="st0" width="4" height="16"/>
281
+ <rect x="95.1" y="146.1" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -80.5396 113.7666)" class="st0" width="4" height="16"/>
282
+ <rect x="55.5" y="185.7" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -120.1392 97.3652)" class="st0" width="4" height="16"/>
283
+ <rect x="61.1" y="180" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -114.4393 99.6905)" class="st0" width="4" height="16"/>
284
+
285
+ <rect x="66.8" y="174.4" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -108.8394 102.0572)" class="st0" width="4" height="16"/>
286
+
287
+ <rect x="72.4" y="168.7" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -103.1394 104.3826)" class="st0" width="4" height="16"/>
288
+ <rect x="49.8" y="191.3" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -125.7391 94.9985)" class="st0" width="4" height="16"/>
289
+ <rect x="27.2" y="214" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -148.4389 85.6559)" class="st0" width="4" height="16"/>
290
+ <rect x="32.8" y="208.3" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -142.739 87.9812)" class="st0" width="4" height="16"/>
291
+ <rect x="38.5" y="202.7" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -137.139 90.348)" class="st0" width="4" height="16"/>
292
+ <rect x="44.1" y="197" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -131.4391 92.6732)" class="st0" width="4" height="16"/>
293
+
294
+ <rect x="100.7" y="140.4" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -74.8396 116.0919)" class="st0" width="4" height="16"/>
295
+
296
+ <rect x="106.4" y="134.8" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -69.2397 118.4586)" class="st0" width="4" height="16"/>
297
+ <rect x="112" y="129.1" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -63.5397 120.7839)" class="st0" width="4" height="16"/>
298
+
299
+ <rect x="118.4" y="122.8" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -57.2399 123.4464)" class="st0" width="4" height="16"/>
300
+
301
+ <rect x="124.1" y="117.1" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -51.5399 125.7718)" class="st0" width="4" height="16"/>
302
+ <rect x="129.7" y="111.4" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -45.8399 128.097)" class="st0" width="4" height="16"/>
303
+ <rect x="135.4" y="105.8" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -40.24 130.4638)" class="st0" width="4" height="16"/>
304
+ <rect x="141" y="100.1" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -34.54 132.7891)" class="st0" width="4" height="16"/>
305
+ <rect x="146.7" y="94.5" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -28.9401 135.1558)" class="st0" width="4" height="16"/>
306
+ <rect x="152.3" y="88.8" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -23.2401 137.4811)" class="st0" width="4" height="16"/>
307
+ <rect x="158" y="83.2" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -17.6402 139.8478)" class="st0" width="4" height="16"/>
308
+ <rect x="163.6" y="77.5" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -11.9402 142.1731)" class="st0" width="4" height="16"/>
309
+ <rect x="169.3" y="71.8" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -6.2403 144.4984)" class="st0" width="4" height="16"/>
310
+ <rect x="175" y="66.2" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -0.6403 146.8651)" class="st0" width="4" height="16"/>
311
+ <rect x="180.6" y="60.5" transform="matrix(0.7071 -0.7071 0.7071 0.7071 5.0595 149.1904)" class="st0" width="4" height="16"/>
312
+ <rect x="187" y="54.2" transform="matrix(0.7071 -0.7071 0.7071 0.7071 11.3595 151.853)" class="st0" width="4" height="16"/>
313
+ <rect x="192.6" y="48.5" transform="matrix(0.7071 -0.7071 0.7071 0.7071 17.0595 154.1782)" class="st0" width="4" height="16"/>
314
+ <rect x="198.3" y="42.9" transform="matrix(0.7071 -0.7071 0.7071 0.7071 22.6594 156.545)" class="st0" width="4" height="16"/>
315
+ <rect x="204" y="37.2" transform="matrix(0.7071 -0.7071 0.7071 0.7071 28.3594 158.8703)" class="st0" width="4" height="16"/>
316
+ <rect x="209.6" y="31.5" transform="matrix(0.7071 -0.7071 0.7071 0.7071 34.0593 161.1956)" class="st0" width="4" height="16"/>
317
+ <rect x="215.3" y="25.9" transform="matrix(0.7071 -0.7071 0.7071 0.7071 39.6593 163.5623)" class="st0" width="4" height="16"/>
318
+ <rect x="220.9" y="20.2" transform="matrix(0.7071 -0.7071 0.7071 0.7071 45.3592 165.8876)" class="st0" width="4" height="16"/>
319
+
320
+ <rect x="-18" y="119.1" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 301.8937 129.1823)" class="st1" width="284.3" height="16.1"/>
321
+ </g>
322
+ <g id="反斜杠行人">
323
+ <rect x="72" y="77.1" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -32.5174 79.7722)" class="st0" width="16" height="4"/>
324
+ <rect x="77.8" y="82.8" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -34.8427 85.4721)" class="st0" width="16" height="4"/>
325
+ <rect x="83.5" y="88.5" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -37.168 91.1721)" class="st0" width="16" height="4"/>
326
+ <rect x="89" y="94.1" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -39.5347 96.772)" class="st0" width="16" height="4"/>
327
+ <rect x="49.4" y="54.5" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -23.1333 57.1724)" class="st0" width="16" height="4"/>
328
+ <rect x="55.2" y="60.2" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -25.4587 62.8724)" class="st0" width="16" height="4"/>
329
+ <rect x="60.7" y="65.8" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -27.8253 68.4723)" class="st0" width="16" height="4"/>
330
+ <rect x="66.5" y="71.5" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -30.1507 74.1722)" class="st0" width="16" height="4"/>
331
+ <rect x="43.9" y="48.9" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -20.7666 51.5725)" class="st0" width="16" height="4"/>
332
+ <rect x="21.1" y="26.2" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -11.424 28.8727)" class="st0" width="16" height="4"/>
333
+ <rect x="26.9" y="31.9" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -13.7493 34.5726)" class="st0" width="16" height="4"/>
334
+ <rect x="32.4" y="37.5" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -16.1161 40.1726)" class="st0" width="16" height="4"/>
335
+ <rect x="38.2" y="43.2" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -18.4413 45.8725)" class="st0" width="16" height="4"/>
336
+ <rect x="94.8" y="99.8" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -41.86 102.472)" class="st0" width="16" height="4"/>
337
+
338
+ <rect x="100.3" y="105.4" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -44.2267 108.0719)" class="st0" width="16" height="4"/>
339
+ <rect x="106.1" y="111.1" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -46.552 113.7719)" class="st0" width="16" height="4"/>
340
+
341
+ <rect x="112.3" y="117.4" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -49.2146 120.0718)" class="st0" width="16" height="4"/>
342
+
343
+ <rect x="118.1" y="123.1" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -51.5399 125.7718)" class="st0" width="16" height="4"/>
344
+
345
+ <rect x="123.8" y="128.8" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -53.8652 131.4717)" class="st0" width="16" height="4"/>
346
+
347
+ <rect x="129.3" y="134.4" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -56.2319 137.0716)" class="st0" width="16" height="4"/>
348
+
349
+ <rect x="135.1" y="140.1" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -58.5572 142.7716)" class="st0" width="16" height="4"/>
350
+
351
+ <rect x="140.6" y="145.7" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -60.9239 148.3715)" class="st0" width="16" height="4"/>
352
+
353
+ <rect x="146.4" y="151.4" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -63.2492 154.0715)" class="st0" width="16" height="4"/>
354
+ <rect x="151.9" y="157" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -65.6159 159.6714)" class="st0" width="16" height="4"/>
355
+
356
+ <rect x="157.7" y="162.7" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -67.9412 165.3714)" class="st0" width="16" height="4"/>
357
+
358
+ <rect x="163.4" y="168.4" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -70.2665 171.0713)" class="st0" width="16" height="4"/>
359
+ <rect x="168.9" y="174" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -72.6332 176.6713)" class="st0" width="16" height="4"/>
360
+
361
+ <rect x="174.7" y="179.7" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -74.9585 182.3712)" class="st0" width="16" height="4"/>
362
+ <rect x="180.9" y="186" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -77.6211 188.6711)" class="st0" width="16" height="4"/>
363
+
364
+ <rect x="186.7" y="191.7" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -79.9464 194.3711)" class="st0" width="16" height="4"/>
365
+ <rect x="192.2" y="197.3" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -82.3131 199.971)" class="st0" width="16" height="4"/>
366
+ <rect x="197.9" y="203" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -84.6384 205.671)" class="st0" width="16" height="4"/>
367
+
368
+ <rect x="203.7" y="208.7" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -86.9637 211.3709)" class="st0" width="16" height="4"/>
369
+
370
+ <rect x="209.2" y="214.3" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -89.3304 216.9709)" class="st0" width="16" height="4"/>
371
+ <rect x="215" y="220" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -91.6557 222.6708)" class="st0" width="16" height="4"/>
372
+
373
+ <rect x="-12.8" y="117.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 125.5193 -52.5175)" class="st1" width="277.9" height="16.1"/>
374
+ </g>
375
+ <g id="东西路段行人">
376
+ <g>
377
+ <rect x="38" y="97.9" class="st0" width="4" height="56.3"/>
378
+ </g>
379
+ <g>
380
+ <rect x="30.2" y="97.9" class="st0" width="4" height="56.3"/>
381
+ </g>
382
+ <g>
383
+ <rect x="22.6" y="97.9" class="st0" width="4" height="56.3"/>
384
+ </g>
385
+ <g>
386
+ <rect x="45.8" y="97.9" class="st0" width="4" height="56.3"/>
387
+ </g>
388
+ <g>
389
+ <rect x="53.6" y="97.9" class="st0" width="4" height="56.3"/>
390
+ </g>
391
+ <g>
392
+ <rect x="61.4" y="97.9" class="st0" width="4" height="56.3"/>
393
+ </g>
394
+ <g>
395
+ <rect x="69.2" y="97.9" class="st0" width="4" height="56.3"/>
396
+ </g>
397
+ <g>
398
+ <rect x="77" y="97.9" class="st0" width="4" height="56.3"/>
399
+ </g>
400
+ <g>
401
+ <rect x="84.8" y="97.9" class="st0" width="4" height="56.3"/>
402
+ </g>
403
+ <g>
404
+ <rect x="92.6" y="97.9" class="st0" width="4" height="56.3"/>
405
+ </g>
406
+ <g>
407
+ <rect x="100.4" y="97.9" class="st0" width="4" height="56.3"/>
408
+ </g>
409
+ <g>
410
+ <rect x="108.2" y="97.9" class="st0" width="4" height="56.3"/>
411
+ </g>
412
+ <g>
413
+ <rect x="116.1" y="97.9" class="st0" width="4" height="56.3"/>
414
+ </g>
415
+ <g>
416
+ <rect x="123.9" y="97.9" class="st0" width="4" height="56.3"/>
417
+ </g>
418
+ <g>
419
+ <rect x="131.7" y="97.9" class="st0" width="4" height="56.3"/>
420
+ </g>
421
+ <g>
422
+ <rect x="139.4" y="97.9" class="st0" width="4" height="56.3"/>
423
+ </g>
424
+ <g>
425
+ <rect x="147.3" y="97.9" class="st0" width="4" height="56.3"/>
426
+ </g>
427
+ <g>
428
+ <rect x="155.1" y="97.9" class="st0" width="4" height="56.3"/>
429
+ </g>
430
+ <g>
431
+ <rect x="162.9" y="97.9" class="st0" width="4" height="56.3"/>
432
+ </g>
433
+ <g>
434
+ <rect x="170.7" y="97.9" class="st0" width="4" height="56.3"/>
435
+ </g>
436
+ <g>
437
+ <rect x="178.4" y="97.9" class="st0" width="4" height="56.3"/>
438
+ </g>
439
+ <g>
440
+ <rect x="186.3" y="97.9" class="st0" width="4" height="56.3"/>
441
+ </g>
442
+ <g>
443
+ <rect x="194.1" y="97.9" class="st0" width="4" height="56.3"/>
444
+ </g>
445
+ <g>
446
+ <rect x="201.9" y="97.9" class="st0" width="4" height="56.3"/>
447
+ </g>
448
+ <g>
449
+ <rect x="209.7" y="97.9" class="st0" width="4" height="56.3"/>
450
+ <rect x="217.7" y="97.9" class="st0" width="4" height="56.3"/>
451
+ <rect x="225.6" y="97.9" class="st0" width="4" height="56.3"/>
452
+ </g>
453
+ <rect x="22.4" y="97.7" class="st1" width="207" height="56.4"/>
454
+ </g>
455
+ <g id="南北路段行人">
456
+ <g>
457
+ <rect x="97.9" y="37" class="st0" width="56.3" height="4"/>
458
+ </g>
459
+ <g>
460
+ <rect x="97.9" y="29.2" class="st0" width="56.3" height="4"/>
461
+ </g>
462
+ <g>
463
+ <rect x="97.9" y="21.6" class="st0" width="56.3" height="4"/>
464
+ </g>
465
+ <g>
466
+ <rect x="97.9" y="44.8" class="st0" width="56.3" height="4"/>
467
+ </g>
468
+ <g>
469
+ <rect x="97.9" y="52.6" class="st0" width="56.3" height="4"/>
470
+ </g>
471
+ <g>
472
+ <rect x="97.9" y="60.4" class="st0" width="56.3" height="4"/>
473
+ </g>
474
+ <g>
475
+ <rect x="97.9" y="68.2" class="st0" width="56.3" height="4"/>
476
+ </g>
477
+ <g>
478
+ <rect x="97.9" y="76" class="st0" width="56.3" height="4"/>
479
+ </g>
480
+ <g>
481
+ <rect x="97.9" y="83.8" class="st0" width="56.3" height="4"/>
482
+ </g>
483
+ <g>
484
+ <rect x="97.9" y="91.6" class="st0" width="56.3" height="4"/>
485
+ </g>
486
+ <g>
487
+ <rect x="97.9" y="99.4" class="st0" width="56.3" height="4"/>
488
+ </g>
489
+ <g>
490
+ <rect x="97.9" y="107.2" class="st0" width="56.3" height="4"/>
491
+ </g>
492
+ <g>
493
+ <rect x="97.9" y="115.1" class="st0" width="56.3" height="4"/>
494
+ </g>
495
+ <g>
496
+ <rect x="97.9" y="122.9" class="st0" width="56.3" height="4"/>
497
+ </g>
498
+ <g>
499
+ <rect x="97.9" y="130.7" class="st0" width="56.3" height="4"/>
500
+ </g>
501
+ <g>
502
+ <rect x="97.9" y="138.5" class="st0" width="56.3" height="4"/>
503
+ </g>
504
+ <g>
505
+ <rect x="97.9" y="146.3" class="st0" width="56.3" height="4"/>
506
+ </g>
507
+ <g>
508
+ <rect x="97.9" y="154.1" class="st0" width="56.3" height="4"/>
509
+ </g>
510
+ <g>
511
+ <rect x="97.9" y="161.9" class="st0" width="56.3" height="4"/>
512
+ </g>
513
+ <g>
514
+ <rect x="97.9" y="169.7" class="st0" width="56.3" height="4"/>
515
+ </g>
516
+ <g>
517
+ <rect x="97.9" y="177.5" class="st0" width="56.3" height="4"/>
518
+ </g>
519
+ <g>
520
+ <rect x="97.9" y="185.3" class="st0" width="56.3" height="4"/>
521
+ </g>
522
+ <g>
523
+ <rect x="97.9" y="193.1" class="st0" width="56.3" height="4"/>
524
+ </g>
525
+ <g>
526
+ <rect x="97.9" y="200.9" class="st0" width="56.3" height="4"/>
527
+ </g>
528
+ <g>
529
+ <rect x="97.9" y="208.7" class="st0" width="56.3" height="4"/>
530
+ <rect x="97.9" y="216.7" class="st0" width="56.3" height="4"/>
531
+ <rect x="97.9" y="224.6" class="st0" width="56.3" height="4"/>
532
+ </g>
533
+ <rect x="97.9" y="21.4" class="st1" width="56.2" height="207.2"/>
534
+ </g>
535
+ </svg>