bbj-screen-widget 2.4.45 → 2.4.46

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 (717) hide show
  1. package/core/package.json +2 -10
  2. package/core/src/service/baidu-map.service.ts +107 -0
  3. package/karma.conf.js +32 -0
  4. package/ng-package.json +59 -0
  5. package/package.json +4 -13
  6. package/src/lib/announcement/announcement.component.html +3 -0
  7. package/src/lib/announcement/announcement.component.less +5 -0
  8. package/src/lib/announcement/announcement.component.spec.ts +25 -0
  9. package/src/lib/announcement/announcement.component.ts +55 -0
  10. package/src/lib/announcement/announcement.module.ts +19 -0
  11. package/src/lib/audio/audio.component.html +6 -0
  12. package/src/lib/audio/audio.component.less +12 -0
  13. package/src/lib/audio/audio.component.spec.ts +25 -0
  14. package/src/lib/audio/audio.component.ts +167 -0
  15. package/src/lib/audio/audio.module.ts +15 -0
  16. package/src/lib/background/background.component.html +1 -0
  17. package/src/lib/background/background.component.less +6 -0
  18. package/src/lib/background/background.component.spec.ts +25 -0
  19. package/src/lib/background/background.component.ts +33 -0
  20. package/src/lib/background/background.module.ts +14 -0
  21. package/src/lib/bar-chart-three-d/bar-chart-three-d.component.html +1 -0
  22. package/src/lib/bar-chart-three-d/bar-chart-three-d.component.less +8 -0
  23. package/src/lib/bar-chart-three-d/bar-chart-three-d.component.spec.ts +25 -0
  24. package/src/lib/bar-chart-three-d/bar-chart-three-d.component.ts +271 -0
  25. package/src/lib/bar-chart-three-d/bar-chart-three-d.module.ts +15 -0
  26. package/src/lib/basic-bar-chart/basic-bar-chart.component.html +7 -0
  27. package/src/lib/basic-bar-chart/basic-bar-chart.component.less +5 -0
  28. package/src/lib/basic-bar-chart/basic-bar-chart.component.spec.ts +25 -0
  29. package/src/lib/basic-bar-chart/basic-bar-chart.component.ts +493 -0
  30. package/src/lib/basic-bar-chart/basic-bar-chart.module.ts +21 -0
  31. package/src/lib/basic-line-chart/basic-line-chart.component.html +7 -0
  32. package/src/lib/basic-line-chart/basic-line-chart.component.less +8 -0
  33. package/src/lib/basic-line-chart/basic-line-chart.component.spec.ts +25 -0
  34. package/src/lib/basic-line-chart/basic-line-chart.component.ts +654 -0
  35. package/src/lib/basic-line-chart/basic-line-chart.module.ts +15 -0
  36. package/src/lib/basic-pie-chart/basic-pie-chart.component.html +7 -0
  37. package/src/lib/basic-pie-chart/basic-pie-chart.component.less +8 -0
  38. package/src/lib/basic-pie-chart/basic-pie-chart.component.spec.ts +25 -0
  39. package/src/lib/basic-pie-chart/basic-pie-chart.component.ts +439 -0
  40. package/src/lib/basic-pie-chart/basic-pie-chart.module.ts +15 -0
  41. package/src/lib/basic-planimetric-map/basic-planimetric-map.component.html +2 -0
  42. package/src/lib/basic-planimetric-map/basic-planimetric-map.component.less +9 -0
  43. package/src/lib/basic-planimetric-map/basic-planimetric-map.component.spec.ts +25 -0
  44. package/src/lib/basic-planimetric-map/basic-planimetric-map.component.ts +211 -0
  45. package/src/lib/basic-planimetric-map/basic-planimetric-map.module.ts +16 -0
  46. package/src/lib/breathing-bubble-layer/breathing-bubble-layer.component.css +0 -0
  47. package/src/lib/breathing-bubble-layer/breathing-bubble-layer.component.html +1 -0
  48. package/src/lib/breathing-bubble-layer/breathing-bubble-layer.component.spec.ts +25 -0
  49. package/src/lib/breathing-bubble-layer/breathing-bubble-layer.component.ts +487 -0
  50. package/src/lib/breathing-bubble-layer/breathing-bubble-layer.module.ts +14 -0
  51. package/src/lib/bubble-chart/bubble-chart.component.html +7 -0
  52. package/src/lib/bubble-chart/bubble-chart.component.less +8 -0
  53. package/src/lib/bubble-chart/bubble-chart.component.spec.ts +25 -0
  54. package/src/lib/bubble-chart/bubble-chart.component.ts +307 -0
  55. package/src/lib/bubble-chart/bubble-chart.module.ts +15 -0
  56. package/src/lib/bulletin-board/bulletin-board.component.html +15 -0
  57. package/src/lib/bulletin-board/bulletin-board.component.less +27 -0
  58. package/src/lib/bulletin-board/bulletin-board.component.spec.ts +25 -0
  59. package/src/lib/bulletin-board/bulletin-board.component.ts +127 -0
  60. package/src/lib/bulletin-board/bulletin-board.module.ts +20 -0
  61. package/src/lib/button/button.component.html +1 -0
  62. package/src/lib/button/button.component.less +17 -0
  63. package/src/lib/button/button.component.spec.ts +25 -0
  64. package/src/lib/button/button.component.ts +137 -0
  65. package/src/lib/button/button.module.ts +16 -0
  66. package/src/lib/calendar/calendar.component.html +1 -0
  67. package/src/lib/calendar/calendar.component.less +14 -0
  68. package/src/lib/calendar/calendar.component.spec.ts +25 -0
  69. package/src/lib/calendar/calendar.component.ts +75 -0
  70. package/src/lib/calendar/calendar.module.ts +23 -0
  71. package/src/lib/checkbox/checkbox.component.html +61 -0
  72. package/src/lib/checkbox/checkbox.component.less +104 -0
  73. package/src/lib/checkbox/checkbox.component.spec.ts +25 -0
  74. package/src/lib/checkbox/checkbox.component.ts +292 -0
  75. package/src/lib/checkbox/checkbox.module.ts +16 -0
  76. package/src/lib/cross-table/cross-table.component.html +16 -0
  77. package/src/lib/cross-table/cross-table.component.less +75 -0
  78. package/src/lib/cross-table/cross-table.component.spec.ts +25 -0
  79. package/src/lib/cross-table/cross-table.component.ts +257 -0
  80. package/src/lib/cross-table/cross-table.module.ts +18 -0
  81. package/src/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.html +32 -0
  82. package/src/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.less +11 -0
  83. package/src/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.spec.ts +25 -0
  84. package/src/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.ts +638 -0
  85. package/src/lib/custom-baidu-map/baidu-polyline-layer/baidu-polyline-layer.component.html +0 -0
  86. package/src/lib/custom-baidu-map/baidu-polyline-layer/baidu-polyline-layer.component.less +0 -0
  87. package/src/lib/custom-baidu-map/baidu-polyline-layer/baidu-polyline-layer.component.spec.ts +25 -0
  88. package/src/lib/custom-baidu-map/baidu-polyline-layer/baidu-polyline-layer.component.ts +248 -0
  89. package/src/lib/custom-baidu-map/base-layer.ts +50 -0
  90. package/src/lib/custom-baidu-map/custom-baidu-map.component.html +15 -0
  91. package/src/lib/custom-baidu-map/custom-baidu-map.component.less +68 -0
  92. package/src/lib/custom-baidu-map/custom-baidu-map.component.spec.ts +25 -0
  93. package/src/lib/custom-baidu-map/custom-baidu-map.component.ts +636 -0
  94. package/src/lib/custom-baidu-map/custom-baidu-map.module.ts +41 -0
  95. package/src/lib/custom-baidu-map/typhoon-area-layer/typhoon-area-layer.component.html +0 -0
  96. package/src/lib/custom-baidu-map/typhoon-area-layer/typhoon-area-layer.component.less +0 -0
  97. package/src/lib/custom-baidu-map/typhoon-area-layer/typhoon-area-layer.component.spec.ts +25 -0
  98. package/src/lib/custom-baidu-map/typhoon-area-layer/typhoon-area-layer.component.ts +99 -0
  99. package/src/lib/custom-baidu-map/wind-layer/wind-layer.component.html +0 -0
  100. package/src/lib/custom-baidu-map/wind-layer/wind-layer.component.less +0 -0
  101. package/src/lib/custom-baidu-map/wind-layer/wind-layer.component.spec.ts +25 -0
  102. package/src/lib/custom-baidu-map/wind-layer/wind-layer.component.ts +404 -0
  103. package/src/lib/data-map/data-map.component.html +9 -0
  104. package/src/lib/data-map/data-map.component.less +0 -0
  105. package/src/lib/data-map/data-map.component.spec.ts +25 -0
  106. package/src/lib/data-map/data-map.component.ts +105 -0
  107. package/src/lib/data-map/data-map.module.ts +15 -0
  108. package/src/lib/date-picker/date-picker.component.html +32 -0
  109. package/src/lib/date-picker/date-picker.component.less +20 -0
  110. package/src/lib/date-picker/date-picker.component.spec.ts +25 -0
  111. package/src/lib/date-picker/date-picker.component.ts +389 -0
  112. package/src/lib/date-picker/date-picker.module.ts +18 -0
  113. package/src/lib/drop-down-detail-list/drop-down-detail-list.component.html +25 -0
  114. package/src/lib/drop-down-detail-list/drop-down-detail-list.component.less +35 -0
  115. package/src/lib/drop-down-detail-list/drop-down-detail-list.component.spec.ts +25 -0
  116. package/src/lib/drop-down-detail-list/drop-down-detail-list.component.ts +117 -0
  117. package/src/lib/drop-down-detail-list/drop-down-detail-list.module.ts +15 -0
  118. package/src/lib/dynamic-list/dynamic-list.component.html +15 -0
  119. package/src/lib/dynamic-list/dynamic-list.component.less +31 -0
  120. package/src/lib/dynamic-list/dynamic-list.component.spec.ts +25 -0
  121. package/src/lib/dynamic-list/dynamic-list.component.ts +57 -0
  122. package/src/lib/dynamic-list/dynamic-list.module.ts +15 -0
  123. package/src/lib/funnel-chart/funnel-chart.component.html +7 -0
  124. package/src/lib/funnel-chart/funnel-chart.component.less +8 -0
  125. package/src/lib/funnel-chart/funnel-chart.component.spec.ts +25 -0
  126. package/src/lib/funnel-chart/funnel-chart.component.ts +198 -0
  127. package/src/lib/funnel-chart/funnel-chart.module.ts +15 -0
  128. package/src/lib/gantt/gantt.component.html +10 -0
  129. package/src/lib/gantt/gantt.component.less +76 -0
  130. package/src/lib/gantt/gantt.component.spec.ts +25 -0
  131. package/src/lib/gantt/gantt.component.ts +213 -0
  132. package/src/lib/gantt/gantt.module.ts +37 -0
  133. package/src/lib/gauge/gauge.component.html +1 -0
  134. package/src/lib/gauge/gauge.component.less +8 -0
  135. package/src/lib/gauge/gauge.component.spec.ts +25 -0
  136. package/src/lib/gauge/gauge.component.ts +268 -0
  137. package/src/lib/gauge/gauge.module.ts +15 -0
  138. package/src/lib/gauge-progress/gauge-progress.component.html +29 -0
  139. package/src/lib/gauge-progress/gauge-progress.component.less +51 -0
  140. package/src/lib/gauge-progress/gauge-progress.component.ts +288 -0
  141. package/src/lib/gauge-progress/gauge.module.ts +16 -0
  142. package/src/lib/general-text/general-text.component.html +7 -0
  143. package/src/lib/general-text/general-text.component.less +8 -0
  144. package/src/lib/general-text/general-text.component.spec.ts +25 -0
  145. package/src/lib/general-text/general-text.component.ts +114 -0
  146. package/src/lib/general-text/general-text.module.ts +15 -0
  147. package/src/lib/iconfont/icon.ts +198 -0
  148. package/src/lib/iconfont/iconfont.component.html +4 -0
  149. package/src/lib/iconfont/iconfont.component.less +5 -0
  150. package/src/lib/iconfont/iconfont.component.spec.ts +25 -0
  151. package/src/lib/iconfont/iconfont.component.ts +42 -0
  152. package/src/lib/iconfont/iconfont.module.ts +15 -0
  153. package/src/lib/iframe/iframe.component.html +1 -0
  154. package/src/lib/iframe/iframe.component.less +13 -0
  155. package/src/lib/iframe/iframe.component.spec.ts +25 -0
  156. package/src/lib/iframe/iframe.component.ts +34 -0
  157. package/src/lib/iframe/iframe.module.ts +15 -0
  158. package/src/lib/image/image.component.html +2 -0
  159. package/src/lib/image/image.component.less +13 -0
  160. package/src/lib/image/image.component.spec.ts +25 -0
  161. package/src/lib/image/image.component.ts +79 -0
  162. package/src/lib/image/image.module.ts +14 -0
  163. package/src/lib/item-swiper/item-swiper.component.html +48 -0
  164. package/src/lib/item-swiper/item-swiper.component.less +75 -0
  165. package/src/lib/item-swiper/item-swiper.component.spec.ts +25 -0
  166. package/src/lib/item-swiper/item-swiper.component.ts +284 -0
  167. package/src/lib/item-swiper/item-swiper.module.ts +24 -0
  168. package/src/lib/line-bar-chart/line-bar-chart.component.html +7 -0
  169. package/src/lib/line-bar-chart/line-bar-chart.component.less +3 -0
  170. package/src/lib/line-bar-chart/line-bar-chart.component.spec.ts +25 -0
  171. package/src/lib/line-bar-chart/line-bar-chart.component.ts +346 -0
  172. package/src/lib/line-bar-chart/line-bar-chart.module.ts +15 -0
  173. package/src/lib/line-light-flow/line-light-flow.component.css +0 -0
  174. package/src/lib/line-light-flow/line-light-flow.component.html +3 -0
  175. package/src/lib/line-light-flow/line-light-flow.component.spec.ts +25 -0
  176. package/src/lib/line-light-flow/line-light-flow.component.ts +274 -0
  177. package/src/lib/line-light-flow/line-light-flow.module.ts +21 -0
  178. package/src/lib/liquid-fill/liquid-fill.component.html +1 -0
  179. package/src/lib/liquid-fill/liquid-fill.component.less +8 -0
  180. package/src/lib/liquid-fill/liquid-fill.component.spec.ts +25 -0
  181. package/src/lib/liquid-fill/liquid-fill.component.ts +127 -0
  182. package/src/lib/liquid-fill/liquid-fill.module.ts +15 -0
  183. package/src/lib/marquee/marquee.component.html +5 -0
  184. package/src/lib/marquee/marquee.component.less +9 -0
  185. package/src/lib/marquee/marquee.component.spec.ts +25 -0
  186. package/src/lib/marquee/marquee.component.ts +84 -0
  187. package/src/lib/marquee/marquee.module.ts +14 -0
  188. package/src/lib/mip-anim/mip-anim.component.html +1 -0
  189. package/src/lib/mip-anim/mip-anim.component.less +7 -0
  190. package/src/lib/mip-anim/mip-anim.component.spec.ts +25 -0
  191. package/src/lib/mip-anim/mip-anim.component.ts +18 -0
  192. package/src/lib/mip-anim/mip-anim.module.ts +14 -0
  193. package/src/lib/multi-title-gauge/multi-title-gauge.component.html +1 -0
  194. package/src/lib/multi-title-gauge/multi-title-gauge.component.less +9 -0
  195. package/src/lib/multi-title-gauge/multi-title-gauge.component.spec.ts +25 -0
  196. package/src/lib/multi-title-gauge/multi-title-gauge.component.ts +231 -0
  197. package/src/lib/multi-title-gauge/multi-title-gauge.module.ts +19 -0
  198. package/src/lib/number-flop/number-flop.component.html +31 -0
  199. package/src/lib/number-flop/number-flop.component.less +155 -0
  200. package/src/lib/number-flop/number-flop.component.spec.ts +25 -0
  201. package/src/lib/number-flop/number-flop.component.ts +96 -0
  202. package/src/lib/number-flop/number-flop.module.ts +14 -0
  203. package/src/lib/parent-container/parent-container.component.html +0 -0
  204. package/src/lib/parent-container/parent-container.component.less +0 -0
  205. package/src/lib/parent-container/parent-container.component.spec.ts +25 -0
  206. package/src/lib/parent-container/parent-container.component.ts +21 -0
  207. package/src/lib/parent-container/parent-container.module.ts +14 -0
  208. package/src/lib/percent-pie-chart/percent-pie-chart.component.html +8 -0
  209. package/src/lib/percent-pie-chart/percent-pie-chart.component.less +8 -0
  210. package/src/lib/percent-pie-chart/percent-pie-chart.component.spec.ts +25 -0
  211. package/src/lib/percent-pie-chart/percent-pie-chart.component.ts +213 -0
  212. package/src/lib/percent-pie-chart/percent-pie-chart.module.ts +15 -0
  213. package/src/lib/pie3d-chart/pie3d-chart.component.html +1 -0
  214. package/src/lib/pie3d-chart/pie3d-chart.component.less +9 -0
  215. package/src/lib/pie3d-chart/pie3d-chart.component.spec.ts +25 -0
  216. package/src/lib/pie3d-chart/pie3d-chart.component.ts +278 -0
  217. package/src/lib/pie3d-chart/pie3d-chart.module.ts +16 -0
  218. package/src/lib/planimetric-map2d/fly-line-layer/fly-line-layer.component.html +0 -0
  219. package/src/lib/planimetric-map2d/fly-line-layer/fly-line-layer.component.less +0 -0
  220. package/src/lib/planimetric-map2d/fly-line-layer/fly-line-layer.component.spec.ts +25 -0
  221. package/src/lib/planimetric-map2d/fly-line-layer/fly-line-layer.component.ts +411 -0
  222. package/src/lib/planimetric-map2d/fly-line-layer/fly-line-layer.module.ts +13 -0
  223. package/src/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.component.html +1 -0
  224. package/src/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.component.less +0 -0
  225. package/src/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.component.spec.ts +25 -0
  226. package/src/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.component.ts +235 -0
  227. package/src/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.module.ts +16 -0
  228. package/src/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.component.html +0 -0
  229. package/src/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.component.less +0 -0
  230. package/src/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.component.spec.ts +25 -0
  231. package/src/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.component.ts +107 -0
  232. package/src/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.module.ts +17 -0
  233. package/src/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.component.html +0 -0
  234. package/src/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.component.less +0 -0
  235. package/src/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.component.spec.ts +25 -0
  236. package/src/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.component.ts +337 -0
  237. package/src/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.module.ts +18 -0
  238. package/src/lib/planimetric-map2d/planimetric-map2d.component.html +3 -0
  239. package/src/lib/planimetric-map2d/planimetric-map2d.component.less +9 -0
  240. package/src/lib/planimetric-map2d/planimetric-map2d.component.spec.ts +25 -0
  241. package/src/lib/planimetric-map2d/planimetric-map2d.component.ts +649 -0
  242. package/src/lib/planimetric-map2d/planimetric-map2d.module.ts +29 -0
  243. package/src/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.component.html +0 -0
  244. package/src/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.component.less +0 -0
  245. package/src/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.component.spec.ts +25 -0
  246. package/src/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.component.ts +123 -0
  247. package/src/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.module.ts +14 -0
  248. package/src/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.component.html +0 -0
  249. package/src/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.component.less +0 -0
  250. package/src/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.component.spec.ts +25 -0
  251. package/src/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.component.ts +229 -0
  252. package/src/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.module.ts +14 -0
  253. package/src/lib/planimetric-map3d/planimetric-map3d.component.html +2 -0
  254. package/src/lib/planimetric-map3d/planimetric-map3d.component.less +10 -0
  255. package/src/lib/planimetric-map3d/planimetric-map3d.component.spec.ts +25 -0
  256. package/src/lib/planimetric-map3d/planimetric-map3d.component.ts +227 -0
  257. package/src/lib/planimetric-map3d/planimetric-map3d.module.ts +17 -0
  258. package/src/lib/radar-chart/radar-chart.component.html +7 -0
  259. package/src/lib/radar-chart/radar-chart.component.less +8 -0
  260. package/src/lib/radar-chart/radar-chart.component.spec.ts +25 -0
  261. package/src/lib/radar-chart/radar-chart.component.ts +203 -0
  262. package/src/lib/radar-chart/radar-chart.module.ts +15 -0
  263. package/src/lib/radio/radio.component.html +18 -0
  264. package/src/lib/radio/radio.component.less +61 -0
  265. package/src/lib/radio/radio.component.spec.ts +25 -0
  266. package/src/lib/radio/radio.component.ts +116 -0
  267. package/src/lib/radio/radio.module.ts +16 -0
  268. package/src/lib/rate/rate.component.html +16 -0
  269. package/src/lib/rate/rate.component.less +39 -0
  270. package/src/lib/rate/rate.component.spec.ts +25 -0
  271. package/src/lib/rate/rate.component.ts +40 -0
  272. package/src/lib/rate/rate.module.ts +18 -0
  273. package/src/lib/scatter3d/scatter3d.component.html +1 -0
  274. package/src/lib/scatter3d/scatter3d.component.less +8 -0
  275. package/src/lib/scatter3d/scatter3d.component.spec.ts +25 -0
  276. package/src/lib/scatter3d/scatter3d.component.ts +129 -0
  277. package/src/lib/scatter3d/scatter3d.module.ts +15 -0
  278. package/src/lib/screen-widget.module.ts +592 -0
  279. package/src/lib/search/search.component.html +30 -0
  280. package/src/lib/search/search.component.less +30 -0
  281. package/src/lib/search/search.component.spec.ts +25 -0
  282. package/src/lib/search/search.component.ts +103 -0
  283. package/src/lib/search/search.module.ts +22 -0
  284. package/src/lib/select/select.component.html +27 -0
  285. package/src/lib/select/select.component.less +112 -0
  286. package/src/lib/select/select.component.spec.ts +25 -0
  287. package/src/lib/select/select.component.ts +287 -0
  288. package/src/lib/select/select.module.ts +16 -0
  289. package/src/lib/shape/shape.component.html +39 -0
  290. package/src/lib/shape/shape.component.less +8 -0
  291. package/src/lib/shape/shape.component.spec.ts +25 -0
  292. package/src/lib/shape/shape.component.ts +207 -0
  293. package/src/lib/shape/shape.module.ts +14 -0
  294. package/src/lib/shared/component/video-player/video-player.component.html +2 -0
  295. package/src/lib/shared/component/video-player/video-player.component.less +15 -0
  296. package/src/lib/shared/component/video-player/video-player.component.spec.ts +25 -0
  297. package/src/lib/shared/component/video-player/video-player.component.ts +132 -0
  298. package/src/lib/shared/component/video-player/video-player.module.ts +11 -0
  299. package/src/lib/shared/model/scale.token.ts +8 -0
  300. package/src/lib/shared/service/common.service.ts +28 -0
  301. package/src/lib/shared/service/file-url.service.ts +8 -0
  302. package/src/lib/shared/service/gaode-map.service.ts +37 -0
  303. package/src/lib/shared/service/highcharts.service.ts +29 -0
  304. package/src/lib/shared/service/http.service.ts +15 -0
  305. package/src/lib/shared/util/base.util.ts +4 -0
  306. package/src/lib/shared/util/echarts.util.ts +11 -0
  307. package/src/lib/shared/util/style.util.ts +12 -0
  308. package/src/lib/shuffling-list/color.pipe.ts +21 -0
  309. package/src/lib/shuffling-list/shuffling-list.component.html +37 -0
  310. package/src/lib/shuffling-list/shuffling-list.component.less +55 -0
  311. package/src/lib/shuffling-list/shuffling-list.component.spec.ts +25 -0
  312. package/src/lib/shuffling-list/shuffling-list.component.ts +534 -0
  313. package/src/lib/shuffling-list/shuffling-list.module.ts +17 -0
  314. package/src/lib/table/table.component.html +123 -0
  315. package/src/lib/table/table.component.less +76 -0
  316. package/src/lib/table/table.component.spec.ts +25 -0
  317. package/src/lib/table/table.component.ts +608 -0
  318. package/src/lib/table/table.module.ts +33 -0
  319. package/src/lib/tabs/tab/tab.component.html +1 -0
  320. package/src/lib/tabs/tab/tab.component.less +5 -0
  321. package/src/lib/tabs/tab/tab.component.spec.ts +25 -0
  322. package/src/lib/tabs/tab/tab.component.ts +18 -0
  323. package/src/lib/tabs/tabs.component.html +13 -0
  324. package/src/lib/tabs/tabs.component.less +40 -0
  325. package/src/lib/tabs/tabs.component.spec.ts +25 -0
  326. package/src/lib/tabs/tabs.component.ts +68 -0
  327. package/src/lib/tabs/tabs.module.ts +17 -0
  328. package/src/lib/temporary-data/temporary-data.component.html +1 -0
  329. package/src/lib/temporary-data/temporary-data.component.less +4 -0
  330. package/src/lib/temporary-data/temporary-data.component.spec.ts +25 -0
  331. package/src/lib/temporary-data/temporary-data.component.ts +46 -0
  332. package/src/lib/temporary-data/temporary-data.module.ts +15 -0
  333. package/src/lib/text/text.component.css +0 -0
  334. package/src/lib/text/text.component.html +3 -0
  335. package/src/lib/text/text.component.spec.ts +25 -0
  336. package/src/lib/text/text.component.ts +22 -0
  337. package/src/lib/text/text.module.ts +14 -0
  338. package/src/lib/time-picker/time-picker.component.html +1 -0
  339. package/src/lib/time-picker/time-picker.component.less +14 -0
  340. package/src/lib/time-picker/time-picker.component.spec.ts +25 -0
  341. package/src/lib/time-picker/time-picker.component.ts +86 -0
  342. package/src/lib/time-picker/time-picker.module.ts +19 -0
  343. package/src/lib/timer/timer.component.html +7 -0
  344. package/src/lib/timer/timer.component.less +24 -0
  345. package/src/lib/timer/timer.component.spec.ts +25 -0
  346. package/src/lib/timer/timer.component.ts +74 -0
  347. package/src/lib/timer/timer.module.ts +15 -0
  348. package/src/lib/tree-control/tree-control.component.html +97 -0
  349. package/src/lib/tree-control/tree-control.component.less +111 -0
  350. package/src/lib/tree-control/tree-control.component.spec.ts +25 -0
  351. package/src/lib/tree-control/tree-control.component.ts +363 -0
  352. package/src/lib/tree-control/tree-control.module.ts +18 -0
  353. package/src/lib/tree-ring-chart/tree-ring-chart.component.html +7 -0
  354. package/src/lib/tree-ring-chart/tree-ring-chart.component.less +8 -0
  355. package/src/lib/tree-ring-chart/tree-ring-chart.component.spec.ts +25 -0
  356. package/src/lib/tree-ring-chart/tree-ring-chart.component.ts +192 -0
  357. package/src/lib/tree-ring-chart/tree-ring-chart.module.ts +15 -0
  358. package/src/lib/upload/upload.component.html +32 -0
  359. package/src/lib/upload/upload.component.less +14 -0
  360. package/src/lib/upload/upload.component.spec.ts +25 -0
  361. package/src/lib/upload/upload.component.ts +109 -0
  362. package/src/lib/upload/upload.module.ts +19 -0
  363. package/src/lib/video-grid/video-grid.component.html +33 -0
  364. package/src/lib/video-grid/video-grid.component.less +68 -0
  365. package/src/lib/video-grid/video-grid.component.spec.ts +25 -0
  366. package/src/lib/video-grid/video-grid.component.ts +114 -0
  367. package/src/lib/video-grid/video-grid.module.ts +17 -0
  368. package/src/lib/visual-map-chart/visual-map-chart.component.html +8 -0
  369. package/src/lib/visual-map-chart/visual-map-chart.component.less +21 -0
  370. package/src/lib/visual-map-chart/visual-map-chart.component.spec.ts +25 -0
  371. package/src/lib/visual-map-chart/visual-map-chart.component.ts +365 -0
  372. package/src/lib/visual-map-chart/visual-map-chart.module.ts +18 -0
  373. package/src/lib/vote/vote.component.html +6 -0
  374. package/src/lib/vote/vote.component.less +41 -0
  375. package/src/lib/vote/vote.component.spec.ts +25 -0
  376. package/src/lib/vote/vote.component.ts +71 -0
  377. package/src/lib/vote/vote.module.ts +16 -0
  378. package/src/lib/weather/weather.component.html +27 -0
  379. package/src/lib/weather/weather.component.less +67 -0
  380. package/src/lib/weather/weather.component.spec.ts +25 -0
  381. package/src/lib/weather/weather.component.ts +78 -0
  382. package/src/lib/weather/weather.module.ts +16 -0
  383. package/src/lib/wordart/wordart.component.html +2 -0
  384. package/src/lib/wordart/wordart.component.less +12 -0
  385. package/src/lib/wordart/wordart.component.spec.ts +25 -0
  386. package/src/lib/wordart/wordart.component.ts +56 -0
  387. package/src/lib/wordart/wordart.module.ts +14 -0
  388. package/src/lib/workbench-widget.module.ts +675 -0
  389. package/{public-api.d.ts → src/public-api.ts} +46 -34
  390. package/src/test.ts +22 -0
  391. package/tsconfig.lib.json +37 -0
  392. package/tsconfig.lib.prod.json +9 -0
  393. package/tsconfig.spec.json +17 -0
  394. package/tslint.json +17 -0
  395. package/bbj-screen-widget.d.ts +0 -117
  396. package/bbj-screen-widget.metadata.json +0 -1
  397. package/bundles/bbj-screen-widget-core.umd.js +0 -606
  398. package/bundles/bbj-screen-widget-core.umd.js.map +0 -1
  399. package/bundles/bbj-screen-widget-core.umd.min.js +0 -2
  400. package/bundles/bbj-screen-widget-core.umd.min.js.map +0 -1
  401. package/bundles/bbj-screen-widget.umd.js +0 -21301
  402. package/bundles/bbj-screen-widget.umd.js.map +0 -1
  403. package/bundles/bbj-screen-widget.umd.min.js +0 -2
  404. package/bundles/bbj-screen-widget.umd.min.js.map +0 -1
  405. package/core/bbj-screen-widget-core.d.ts +0 -4
  406. package/core/bbj-screen-widget-core.metadata.json +0 -1
  407. package/core/service/baidu-map.service.d.ts +0 -16
  408. package/esm2015/bbj-screen-widget.js +0 -118
  409. package/esm2015/core/bbj-screen-widget-core.js +0 -5
  410. package/esm2015/core/public_api.js +0 -2
  411. package/esm2015/core/service/baidu-map.service.js +0 -101
  412. package/esm2015/lib/announcement/announcement.component.js +0 -80
  413. package/esm2015/lib/announcement/announcement.module.js +0 -25
  414. package/esm2015/lib/audio/audio.component.js +0 -167
  415. package/esm2015/lib/audio/audio.module.js +0 -20
  416. package/esm2015/lib/background/background.component.js +0 -52
  417. package/esm2015/lib/background/background.module.js +0 -19
  418. package/esm2015/lib/bar-chart-three-d/bar-chart-three-d.component.js +0 -323
  419. package/esm2015/lib/bar-chart-three-d/bar-chart-three-d.module.js +0 -20
  420. package/esm2015/lib/basic-bar-chart/basic-bar-chart.component.js +0 -604
  421. package/esm2015/lib/basic-bar-chart/basic-bar-chart.module.js +0 -27
  422. package/esm2015/lib/basic-line-chart/basic-line-chart.component.js +0 -782
  423. package/esm2015/lib/basic-line-chart/basic-line-chart.module.js +0 -20
  424. package/esm2015/lib/basic-pie-chart/basic-pie-chart.component.js +0 -471
  425. package/esm2015/lib/basic-pie-chart/basic-pie-chart.module.js +0 -20
  426. package/esm2015/lib/basic-planimetric-map/basic-planimetric-map.component.js +0 -233
  427. package/esm2015/lib/basic-planimetric-map/basic-planimetric-map.module.js +0 -21
  428. package/esm2015/lib/breathing-bubble-layer/breathing-bubble-layer.component.js +0 -503
  429. package/esm2015/lib/breathing-bubble-layer/breathing-bubble-layer.module.js +0 -19
  430. package/esm2015/lib/bubble-chart/bubble-chart.component.js +0 -348
  431. package/esm2015/lib/bubble-chart/bubble-chart.module.js +0 -20
  432. package/esm2015/lib/bulletin-board/bulletin-board.component.js +0 -160
  433. package/esm2015/lib/bulletin-board/bulletin-board.module.js +0 -23
  434. package/esm2015/lib/button/button.component.js +0 -186
  435. package/esm2015/lib/button/button.module.js +0 -21
  436. package/esm2015/lib/calendar/calendar.component.js +0 -96
  437. package/esm2015/lib/calendar/calendar.module.js +0 -28
  438. package/esm2015/lib/checkbox/checkbox.component.js +0 -333
  439. package/esm2015/lib/checkbox/checkbox.module.js +0 -21
  440. package/esm2015/lib/cross-table/cross-table.component.js +0 -291
  441. package/esm2015/lib/cross-table/cross-table.module.js +0 -20
  442. package/esm2015/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.js +0 -685
  443. package/esm2015/lib/custom-baidu-map/baidu-polyline-layer/baidu-polyline-layer.component.js +0 -278
  444. package/esm2015/lib/custom-baidu-map/base-layer.js +0 -53
  445. package/esm2015/lib/custom-baidu-map/custom-baidu-map.component.js +0 -655
  446. package/esm2015/lib/custom-baidu-map/custom-baidu-map.module.js +0 -46
  447. package/esm2015/lib/custom-baidu-map/typhoon-area-layer/typhoon-area-layer.component.js +0 -116
  448. package/esm2015/lib/custom-baidu-map/wind-layer/wind-layer.component.js +0 -331
  449. package/esm2015/lib/date-picker/date-picker.component.js +0 -447
  450. package/esm2015/lib/date-picker/date-picker.module.js +0 -22
  451. package/esm2015/lib/funnel-chart/funnel-chart.component.js +0 -241
  452. package/esm2015/lib/funnel-chart/funnel-chart.module.js +0 -20
  453. package/esm2015/lib/gantt/gantt.component.js +0 -222
  454. package/esm2015/lib/gantt/gantt.module.js +0 -39
  455. package/esm2015/lib/gauge/gauge.component.js +0 -324
  456. package/esm2015/lib/gauge/gauge.module.js +0 -20
  457. package/esm2015/lib/gauge-progress/gauge-progress.component.js +0 -348
  458. package/esm2015/lib/gauge-progress/gauge.module.js +0 -21
  459. package/esm2015/lib/general-text/general-text.component.js +0 -144
  460. package/esm2015/lib/general-text/general-text.module.js +0 -20
  461. package/esm2015/lib/iconfont/icon.js +0 -199
  462. package/esm2015/lib/iconfont/iconfont.component.js +0 -56
  463. package/esm2015/lib/iconfont/iconfont.module.js +0 -20
  464. package/esm2015/lib/iframe/iframe.component.js +0 -46
  465. package/esm2015/lib/iframe/iframe.module.js +0 -20
  466. package/esm2015/lib/image/image.component.js +0 -98
  467. package/esm2015/lib/image/image.module.js +0 -19
  468. package/esm2015/lib/item-swiper/item-swiper.component.js +0 -334
  469. package/esm2015/lib/item-swiper/item-swiper.module.js +0 -28
  470. package/esm2015/lib/line-bar-chart/line-bar-chart.component.js +0 -398
  471. package/esm2015/lib/line-bar-chart/line-bar-chart.module.js +0 -20
  472. package/esm2015/lib/line-light-flow/line-light-flow.component.js +0 -241
  473. package/esm2015/lib/line-light-flow/line-light-flow.module.js +0 -24
  474. package/esm2015/lib/liquid-fill/liquid-fill.component.js +0 -158
  475. package/esm2015/lib/liquid-fill/liquid-fill.module.js +0 -20
  476. package/esm2015/lib/marquee/marquee.component.js +0 -110
  477. package/esm2015/lib/marquee/marquee.module.js +0 -19
  478. package/esm2015/lib/mip-anim/mip-anim.component.js +0 -26
  479. package/esm2015/lib/mip-anim/mip-anim.module.js +0 -19
  480. package/esm2015/lib/multi-title-gauge/multi-title-gauge.component.js +0 -277
  481. package/esm2015/lib/multi-title-gauge/multi-title-gauge.module.js +0 -22
  482. package/esm2015/lib/number-flop/number-flop.component.js +0 -124
  483. package/esm2015/lib/number-flop/number-flop.module.js +0 -19
  484. package/esm2015/lib/parent-container/parent-container.component.js +0 -21
  485. package/esm2015/lib/parent-container/parent-container.module.js +0 -19
  486. package/esm2015/lib/percent-pie-chart/percent-pie-chart.component.js +0 -248
  487. package/esm2015/lib/percent-pie-chart/percent-pie-chart.module.js +0 -20
  488. package/esm2015/lib/pie3d-chart/pie3d-chart.component.js +0 -303
  489. package/esm2015/lib/pie3d-chart/pie3d-chart.module.js +0 -19
  490. package/esm2015/lib/planimetric-map2d/fly-line-layer/fly-line-layer.component.js +0 -431
  491. package/esm2015/lib/planimetric-map2d/fly-line-layer/fly-line-layer.module.js +0 -19
  492. package/esm2015/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.component.js +0 -252
  493. package/esm2015/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.module.js +0 -19
  494. package/esm2015/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.component.js +0 -124
  495. package/esm2015/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.module.js +0 -19
  496. package/esm2015/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.component.js +0 -359
  497. package/esm2015/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.module.js +0 -21
  498. package/esm2015/lib/planimetric-map2d/planimetric-map2d.component.js +0 -712
  499. package/esm2015/lib/planimetric-map2d/planimetric-map2d.module.js +0 -34
  500. package/esm2015/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.component.js +0 -128
  501. package/esm2015/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.module.js +0 -19
  502. package/esm2015/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.component.js +0 -242
  503. package/esm2015/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.module.js +0 -19
  504. package/esm2015/lib/planimetric-map3d/planimetric-map3d.component.js +0 -265
  505. package/esm2015/lib/planimetric-map3d/planimetric-map3d.module.js +0 -22
  506. package/esm2015/lib/radar-chart/radar-chart.component.js +0 -236
  507. package/esm2015/lib/radar-chart/radar-chart.module.js +0 -20
  508. package/esm2015/lib/radio/radio.component.js +0 -148
  509. package/esm2015/lib/radio/radio.module.js +0 -21
  510. package/esm2015/lib/rate/rate.component.js +0 -57
  511. package/esm2015/lib/rate/rate.module.js +0 -23
  512. package/esm2015/lib/scatter3d/scatter3d.component.js +0 -166
  513. package/esm2015/lib/scatter3d/scatter3d.module.js +0 -20
  514. package/esm2015/lib/screen-widget.module.js +0 -536
  515. package/esm2015/lib/search/search.component.js +0 -130
  516. package/esm2015/lib/search/search.module.js +0 -29
  517. package/esm2015/lib/select/select.component.js +0 -343
  518. package/esm2015/lib/select/select.module.js +0 -21
  519. package/esm2015/lib/shape/shape.component.js +0 -248
  520. package/esm2015/lib/shape/shape.module.js +0 -19
  521. package/esm2015/lib/shared/component/video-player/video-player.component.js +0 -114
  522. package/esm2015/lib/shared/component/video-player/video-player.module.js +0 -14
  523. package/esm2015/lib/shared/service/common.service.js +0 -39
  524. package/esm2015/lib/shared/service/file-url.service.js +0 -12
  525. package/esm2015/lib/shared/service/gaode-map.service.js +0 -36
  526. package/esm2015/lib/shared/service/highcharts.service.js +0 -36
  527. package/esm2015/lib/shared/service/http.service.js +0 -20
  528. package/esm2015/lib/shared/util/base.util.js +0 -5
  529. package/esm2015/lib/shared/util/echarts.util.js +0 -12
  530. package/esm2015/lib/shared/util/style.util.js +0 -19
  531. package/esm2015/lib/shuffling-list/color.pipe.js +0 -23
  532. package/esm2015/lib/shuffling-list/shuffling-list.component.js +0 -600
  533. package/esm2015/lib/shuffling-list/shuffling-list.module.js +0 -22
  534. package/esm2015/lib/table/table.component.js +0 -657
  535. package/esm2015/lib/table/table.module.js +0 -38
  536. package/esm2015/lib/tabs/tab/tab.component.js +0 -27
  537. package/esm2015/lib/tabs/tabs.component.js +0 -85
  538. package/esm2015/lib/tabs/tabs.module.js +0 -22
  539. package/esm2015/lib/temporary-data/temporary-data.component.js +0 -49
  540. package/esm2015/lib/temporary-data/temporary-data.module.js +0 -20
  541. package/esm2015/lib/time-picker/time-picker.component.js +0 -112
  542. package/esm2015/lib/time-picker/time-picker.module.js +0 -21
  543. package/esm2015/lib/timer/timer.component.js +0 -108
  544. package/esm2015/lib/timer/timer.module.js +0 -20
  545. package/esm2015/lib/tree-control/tree-control.component.js +0 -435
  546. package/esm2015/lib/tree-control/tree-control.module.js +0 -24
  547. package/esm2015/lib/tree-ring-chart/tree-ring-chart.component.js +0 -215
  548. package/esm2015/lib/tree-ring-chart/tree-ring-chart.module.js +0 -20
  549. package/esm2015/lib/upload/upload.component.js +0 -127
  550. package/esm2015/lib/upload/upload.module.js +0 -22
  551. package/esm2015/lib/video-grid/video-grid.component.js +0 -133
  552. package/esm2015/lib/video-grid/video-grid.module.js +0 -22
  553. package/esm2015/lib/visual-map-chart/visual-map-chart.component.js +0 -395
  554. package/esm2015/lib/visual-map-chart/visual-map-chart.module.js +0 -20
  555. package/esm2015/lib/vote/vote.component.js +0 -100
  556. package/esm2015/lib/vote/vote.module.js +0 -21
  557. package/esm2015/lib/weather/weather.component.js +0 -92
  558. package/esm2015/lib/weather/weather.module.js +0 -21
  559. package/esm2015/lib/wordart/wordart.component.js +0 -84
  560. package/esm2015/lib/wordart/wordart.module.js +0 -19
  561. package/esm2015/lib/workbench-widget.module.js +0 -620
  562. package/esm2015/public-api.js +0 -39
  563. package/fesm2015/bbj-screen-widget-core.js +0 -107
  564. package/fesm2015/bbj-screen-widget-core.js.map +0 -1
  565. package/fesm2015/bbj-screen-widget.js +0 -20222
  566. package/fesm2015/bbj-screen-widget.js.map +0 -1
  567. package/lib/announcement/announcement.component.d.ts +0 -13
  568. package/lib/announcement/announcement.module.d.ts +0 -5
  569. package/lib/audio/audio.component.d.ts +0 -22
  570. package/lib/audio/audio.module.d.ts +0 -4
  571. package/lib/background/background.component.d.ts +0 -12
  572. package/lib/background/background.module.d.ts +0 -4
  573. package/lib/bar-chart-three-d/bar-chart-three-d.component.d.ts +0 -30
  574. package/lib/bar-chart-three-d/bar-chart-three-d.module.d.ts +0 -4
  575. package/lib/basic-bar-chart/basic-bar-chart.component.d.ts +0 -105
  576. package/lib/basic-bar-chart/basic-bar-chart.module.d.ts +0 -5
  577. package/lib/basic-line-chart/basic-line-chart.component.d.ts +0 -102
  578. package/lib/basic-line-chart/basic-line-chart.module.d.ts +0 -4
  579. package/lib/basic-pie-chart/basic-pie-chart.component.d.ts +0 -56
  580. package/lib/basic-pie-chart/basic-pie-chart.module.d.ts +0 -4
  581. package/lib/basic-planimetric-map/basic-planimetric-map.component.d.ts +0 -18
  582. package/lib/basic-planimetric-map/basic-planimetric-map.module.d.ts +0 -4
  583. package/lib/breathing-bubble-layer/breathing-bubble-layer.component.d.ts +0 -210
  584. package/lib/breathing-bubble-layer/breathing-bubble-layer.module.d.ts +0 -4
  585. package/lib/bubble-chart/bubble-chart.component.d.ts +0 -75
  586. package/lib/bubble-chart/bubble-chart.module.d.ts +0 -4
  587. package/lib/bulletin-board/bulletin-board.component.d.ts +0 -25
  588. package/lib/bulletin-board/bulletin-board.module.d.ts +0 -4
  589. package/lib/button/button.component.d.ts +0 -25
  590. package/lib/button/button.module.d.ts +0 -4
  591. package/lib/calendar/calendar.component.d.ts +0 -14
  592. package/lib/calendar/calendar.module.d.ts +0 -4
  593. package/lib/checkbox/checkbox.component.d.ts +0 -45
  594. package/lib/checkbox/checkbox.module.d.ts +0 -4
  595. package/lib/cross-table/cross-table.component.d.ts +0 -30
  596. package/lib/cross-table/cross-table.module.d.ts +0 -4
  597. package/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.d.ts +0 -67
  598. package/lib/custom-baidu-map/baidu-polyline-layer/baidu-polyline-layer.component.d.ts +0 -23
  599. package/lib/custom-baidu-map/base-layer.d.ts +0 -16
  600. package/lib/custom-baidu-map/custom-baidu-map.component.d.ts +0 -92
  601. package/lib/custom-baidu-map/custom-baidu-map.module.d.ts +0 -4
  602. package/lib/custom-baidu-map/typhoon-area-layer/typhoon-area-layer.component.d.ts +0 -16
  603. package/lib/custom-baidu-map/wind-layer/wind-layer.component.d.ts +0 -28
  604. package/lib/date-picker/date-picker.component.d.ts +0 -63
  605. package/lib/date-picker/date-picker.module.d.ts +0 -4
  606. package/lib/funnel-chart/funnel-chart.component.d.ts +0 -24
  607. package/lib/funnel-chart/funnel-chart.module.d.ts +0 -4
  608. package/lib/gantt/gantt.component.d.ts +0 -25
  609. package/lib/gantt/gantt.module.d.ts +0 -4
  610. package/lib/gauge/gauge.component.d.ts +0 -37
  611. package/lib/gauge/gauge.module.d.ts +0 -4
  612. package/lib/gauge-progress/gauge-progress.component.d.ts +0 -46
  613. package/lib/gauge-progress/gauge.module.d.ts +0 -4
  614. package/lib/general-text/general-text.component.d.ts +0 -21
  615. package/lib/general-text/general-text.module.d.ts +0 -4
  616. package/lib/iconfont/icon.d.ts +0 -1
  617. package/lib/iconfont/iconfont.component.d.ts +0 -11
  618. package/lib/iconfont/iconfont.module.d.ts +0 -4
  619. package/lib/iframe/iframe.component.d.ts +0 -10
  620. package/lib/iframe/iframe.module.d.ts +0 -4
  621. package/lib/image/image.component.d.ts +0 -21
  622. package/lib/image/image.module.d.ts +0 -4
  623. package/lib/item-swiper/item-swiper.component.d.ts +0 -41
  624. package/lib/item-swiper/item-swiper.module.d.ts +0 -4
  625. package/lib/line-bar-chart/line-bar-chart.component.d.ts +0 -63
  626. package/lib/line-bar-chart/line-bar-chart.module.d.ts +0 -4
  627. package/lib/line-light-flow/line-light-flow.component.d.ts +0 -26
  628. package/lib/line-light-flow/line-light-flow.module.d.ts +0 -4
  629. package/lib/liquid-fill/liquid-fill.component.d.ts +0 -18
  630. package/lib/liquid-fill/liquid-fill.module.d.ts +0 -4
  631. package/lib/marquee/marquee.component.d.ts +0 -20
  632. package/lib/marquee/marquee.module.d.ts +0 -4
  633. package/lib/mip-anim/mip-anim.component.d.ts +0 -6
  634. package/lib/mip-anim/mip-anim.module.d.ts +0 -4
  635. package/lib/multi-title-gauge/multi-title-gauge.component.d.ts +0 -26
  636. package/lib/multi-title-gauge/multi-title-gauge.module.d.ts +0 -4
  637. package/lib/number-flop/number-flop.component.d.ts +0 -22
  638. package/lib/number-flop/number-flop.module.d.ts +0 -4
  639. package/lib/parent-container/parent-container.component.d.ts +0 -9
  640. package/lib/parent-container/parent-container.module.d.ts +0 -4
  641. package/lib/percent-pie-chart/percent-pie-chart.component.d.ts +0 -24
  642. package/lib/percent-pie-chart/percent-pie-chart.module.d.ts +0 -4
  643. package/lib/pie3d-chart/pie3d-chart.component.d.ts +0 -30
  644. package/lib/pie3d-chart/pie3d-chart.module.d.ts +0 -4
  645. package/lib/planimetric-map2d/fly-line-layer/fly-line-layer.component.d.ts +0 -206
  646. package/lib/planimetric-map2d/fly-line-layer/fly-line-layer.module.d.ts +0 -4
  647. package/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.component.d.ts +0 -15
  648. package/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.module.d.ts +0 -4
  649. package/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.component.d.ts +0 -15
  650. package/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.module.d.ts +0 -4
  651. package/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.component.d.ts +0 -49
  652. package/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.module.d.ts +0 -4
  653. package/lib/planimetric-map2d/planimetric-map2d.component.d.ts +0 -48
  654. package/lib/planimetric-map2d/planimetric-map2d.module.d.ts +0 -4
  655. package/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.component.d.ts +0 -14
  656. package/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.module.d.ts +0 -4
  657. package/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.component.d.ts +0 -41
  658. package/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.module.d.ts +0 -4
  659. package/lib/planimetric-map3d/planimetric-map3d.component.d.ts +0 -29
  660. package/lib/planimetric-map3d/planimetric-map3d.module.d.ts +0 -4
  661. package/lib/radar-chart/radar-chart.component.d.ts +0 -23
  662. package/lib/radar-chart/radar-chart.module.d.ts +0 -4
  663. package/lib/radio/radio.component.d.ts +0 -21
  664. package/lib/radio/radio.module.d.ts +0 -4
  665. package/lib/rate/rate.component.d.ts +0 -13
  666. package/lib/rate/rate.module.d.ts +0 -4
  667. package/lib/scatter3d/scatter3d.component.d.ts +0 -25
  668. package/lib/scatter3d/scatter3d.module.d.ts +0 -4
  669. package/lib/screen-widget.module.d.ts +0 -4
  670. package/lib/search/search.component.d.ts +0 -21
  671. package/lib/search/search.module.d.ts +0 -6
  672. package/lib/select/select.component.d.ts +0 -34
  673. package/lib/select/select.module.d.ts +0 -4
  674. package/lib/shape/shape.component.d.ts +0 -50
  675. package/lib/shape/shape.module.d.ts +0 -4
  676. package/lib/shared/component/video-player/video-player.component.d.ts +0 -28
  677. package/lib/shared/component/video-player/video-player.module.d.ts +0 -2
  678. package/lib/shared/service/common.service.d.ts +0 -21
  679. package/lib/shared/service/file-url.service.d.ts +0 -3
  680. package/lib/shared/service/gaode-map.service.d.ts +0 -10
  681. package/lib/shared/service/highcharts.service.d.ts +0 -9
  682. package/lib/shared/service/http.service.d.ts +0 -7
  683. package/lib/shared/util/base.util.d.ts +0 -1
  684. package/lib/shared/util/echarts.util.d.ts +0 -1
  685. package/lib/shared/util/style.util.d.ts +0 -1
  686. package/lib/shuffling-list/color.pipe.d.ts +0 -4
  687. package/lib/shuffling-list/shuffling-list.component.d.ts +0 -76
  688. package/lib/shuffling-list/shuffling-list.module.d.ts +0 -4
  689. package/lib/table/table.component.d.ts +0 -65
  690. package/lib/table/table.module.d.ts +0 -4
  691. package/lib/tabs/tab/tab.component.d.ts +0 -7
  692. package/lib/tabs/tabs.component.d.ts +0 -13
  693. package/lib/tabs/tabs.module.d.ts +0 -4
  694. package/lib/temporary-data/temporary-data.component.d.ts +0 -13
  695. package/lib/temporary-data/temporary-data.module.d.ts +0 -4
  696. package/lib/time-picker/time-picker.component.d.ts +0 -17
  697. package/lib/time-picker/time-picker.module.d.ts +0 -4
  698. package/lib/timer/timer.component.d.ts +0 -21
  699. package/lib/timer/timer.module.d.ts +0 -4
  700. package/lib/tree-control/tree-control.component.d.ts +0 -62
  701. package/lib/tree-control/tree-control.module.d.ts +0 -4
  702. package/lib/tree-ring-chart/tree-ring-chart.component.d.ts +0 -24
  703. package/lib/tree-ring-chart/tree-ring-chart.module.d.ts +0 -4
  704. package/lib/upload/upload.component.d.ts +0 -21
  705. package/lib/upload/upload.module.d.ts +0 -4
  706. package/lib/video-grid/video-grid.component.d.ts +0 -23
  707. package/lib/video-grid/video-grid.module.d.ts +0 -4
  708. package/lib/visual-map-chart/visual-map-chart.component.d.ts +0 -49
  709. package/lib/visual-map-chart/visual-map-chart.module.d.ts +0 -4
  710. package/lib/vote/vote.component.d.ts +0 -15
  711. package/lib/vote/vote.module.d.ts +0 -4
  712. package/lib/weather/weather.component.d.ts +0 -26
  713. package/lib/weather/weather.module.d.ts +0 -4
  714. package/lib/wordart/wordart.component.d.ts +0 -14
  715. package/lib/wordart/wordart.module.d.ts +0 -4
  716. package/lib/workbench-widget.module.d.ts +0 -4
  717. /package/core/{public_api.d.ts → src/public_api.ts} +0 -0
@@ -0,0 +1,32 @@
1
+ <nz-dropdown-menu #menu="nzDropdownMenu">
2
+ <ng-template #li let-item>
3
+ <li nz-menu-item (click)="makerClick.emit(item.properties.raw)">
4
+ <div class="menu-item-img">
5
+ <img [src]="item.properties.icon" />
6
+ </div>
7
+ {{ item.properties.raw.address }}
8
+ </li>
9
+ </ng-template>
10
+ <ul *ngIf="subMarkers" nz-menu style="max-height: 300px; overflow: auto">
11
+ <ng-container *ngIf="subMarkers.length <= 50">
12
+ <ng-template
13
+ *ngFor="let marker of subMarkers"
14
+ [ngTemplateOutlet]="li"
15
+ [ngTemplateOutletContext]="{ $implicit: marker }"
16
+ ></ng-template>
17
+ </ng-container>
18
+ <cdk-virtual-scroll-viewport
19
+ *ngIf="subMarkers.length > 50"
20
+ [itemSize]="32"
21
+ [minBufferPx]="500"
22
+ [maxBufferPx]="1000"
23
+ style="height: 292px; width: 200px"
24
+ >
25
+ <ng-template
26
+ *cdkVirtualFor="let marker of subMarkers"
27
+ [ngTemplateOutlet]="li"
28
+ [ngTemplateOutletContext]="{ $implicit: marker }"
29
+ ></ng-template>
30
+ </cdk-virtual-scroll-viewport>
31
+ </ul>
32
+ </nz-dropdown-menu>
@@ -0,0 +1,11 @@
1
+ .menu-item-img {
2
+ width: 14px;
3
+ height: 14px;
4
+ display: inline-flex;
5
+ align-items: center;
6
+ justify-content: center;
7
+ img {
8
+ max-height: 100%;
9
+ max-width: 100%;
10
+ }
11
+ }
@@ -0,0 +1,25 @@
1
+ import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
2
+
3
+ import { BaiduMarkerLayerComponent } from './baidu-marker-layer.component';
4
+
5
+ describe('BaiduMarkerLayerComponent', () => {
6
+ let component: BaiduMarkerLayerComponent;
7
+ let fixture: ComponentFixture<BaiduMarkerLayerComponent>;
8
+
9
+ beforeEach(waitForAsync(() => {
10
+ TestBed.configureTestingModule({
11
+ declarations: [ BaiduMarkerLayerComponent ]
12
+ })
13
+ .compileComponents();
14
+ }));
15
+
16
+ beforeEach(() => {
17
+ fixture = TestBed.createComponent(BaiduMarkerLayerComponent);
18
+ component = fixture.componentInstance;
19
+ fixture.detectChanges();
20
+ });
21
+
22
+ it('should create', () => {
23
+ expect(component).toBeTruthy();
24
+ });
25
+ });
@@ -0,0 +1,638 @@
1
+ import {
2
+ Component,
3
+ EventEmitter,
4
+ forwardRef,
5
+ Inject,
6
+ NgZone,
7
+ OnChanges,
8
+ OnDestroy,
9
+ OnInit,
10
+ SimpleChanges,
11
+ ViewChild,
12
+ } from '@angular/core';
13
+ import { Data, DataOutput, Property, Widget, Event, DataInput } from 'bbj-widget-base';
14
+ import { ParentContainerComponent } from '../../parent-container/parent-container.component';
15
+ import { SFArrayWidgetSchema } from '@delon/form';
16
+ import { getFontStyle } from '../../shared/util/style.util';
17
+ import { CustomBaiduMapComponent } from '../custom-baidu-map.component';
18
+ import { BaseLayer } from '../base-layer';
19
+ import { FileUrlService } from '../../shared/service/file-url.service';
20
+ import { NzContextMenuService } from 'ng-zorro-antd/dropdown';
21
+ import { ScrollDispatcher } from '@angular/cdk/scrolling';
22
+ import { getUUID } from '../../shared/util/base.util';
23
+ import { Subject } from 'rxjs';
24
+ import { takeUntil } from 'rxjs/operators';
25
+
26
+ declare const mapvgl;
27
+
28
+ @Component({
29
+ selector: 'sc-baidu-marker-layer',
30
+ templateUrl: './baidu-marker-layer.component.html',
31
+ styleUrls: ['./baidu-marker-layer.component.less'],
32
+ providers: [ScrollDispatcher], // 防止虚拟滚到导致浮层关闭
33
+ })
34
+ @Widget('标记层', {
35
+ group: 'component',
36
+ image: '',
37
+ icon: '',
38
+ hidden: true,
39
+ })
40
+ export class BaiduMarkerLayerComponent extends BaseLayer implements OnInit, OnDestroy, OnChanges {
41
+ @Property('', { min: 1, ui: { widget: 'myPicture', spanLabel: 0, spanControl: 24 } })
42
+ iconUrl = 'assets/img/screen/marker.png';
43
+ @Property('图标宽', { type: 'number' })
44
+ iconWidth = 25;
45
+ @Property('图标高', { type: 'number' })
46
+ iconHeight = 38.25;
47
+ @Property('图标偏移x', { type: 'number' })
48
+ iconOffsetX = 0;
49
+ @Property('图标偏移y', { type: 'number' })
50
+ iconOffsetY = -19.125;
51
+ // @Property('分组', {type: 'string'})
52
+ // group = '';
53
+
54
+ @Property('移至中心')
55
+ toCenter: boolean = false;
56
+ @Property('点聚合')
57
+ enableMarkerClusterer: boolean = false;
58
+ @Property('聚合最小直径', { type: 'number', ui: { visibleIf: { enableMarkerClusterer: [true] } } })
59
+ clusterMinSize = 25;
60
+ @Property('聚合最大直径', { type: 'number', ui: { visibleIf: { enableMarkerClusterer: [true] } } })
61
+ clusterMaxSize = 40;
62
+ @Property('聚合字体', { ui: { widget: 'myFont' } })
63
+ clusterFont: any = {
64
+ color: '#ffffff',
65
+ size: 16,
66
+ };
67
+ @Property('聚合颜色', {
68
+ ui: {
69
+ widget: 'seriesColor',
70
+ visibleIf: { enableMarkerClusterer: [true] },
71
+ },
72
+ })
73
+ clusterGradient: string[];
74
+ @Property('聚合最大级别', { type: 'number', ui: { visibleIf: { enableMarkerClusterer: [true] } } })
75
+ clusterMaxZoom = 4;
76
+ @Property('显示标签', { ui: { visibleIf: { enableMarkerClusterer: [false] } } })
77
+ showLabel: boolean;
78
+ @Property('标签显示缩放等级', { ui: { visibleIf: { showLabel: [true] } } })
79
+ showLabelMinZoom: number;
80
+ // @Property('标签底色', { ui: { widget: 'myColor', visibleIf: { showLabel: [true] } } })
81
+ // labelBackground: string;
82
+ @Property('标签字体', { ui: { widget: 'myFont', visibleIf: { showLabel: [true] } } })
83
+ labelFont: any = {
84
+ family: '',
85
+ color: '#000000',
86
+ weight: 'normal',
87
+ size: 16,
88
+ space: 0,
89
+ lineHeight: 0,
90
+ };
91
+ @Property('标签偏移x', { ui: { widget: 'number', visibleIf: { showLabel: [true] } } })
92
+ labelOffsetX: number;
93
+ @Property('标签偏移y', { ui: { widget: 'number', visibleIf: { showLabel: [true] } } })
94
+ labelOffsetY: number;
95
+ @Property('选中放大')
96
+ enlargeOnSelect: boolean;
97
+ @Property('点击空白取消选中', { type: 'boolean', default: true })
98
+ unselectOnClickBlank = true;
99
+ @Property('标记分组', {
100
+ type: 'array',
101
+ title: '标记分组',
102
+ maxItems: 10,
103
+ items: {
104
+ type: 'object',
105
+ properties: {
106
+ group: {
107
+ type: 'string',
108
+ title: '分组',
109
+ },
110
+ type: {
111
+ title: '类型',
112
+ type: 'string',
113
+ enum: [
114
+ {
115
+ label: '图标',
116
+ value: 'icon',
117
+ },
118
+ {
119
+ label: '圆点',
120
+ value: 'circle',
121
+ },
122
+ {
123
+ label: '正方形',
124
+ value: 'square',
125
+ },
126
+ {
127
+ label: '波纹',
128
+ value: 'wave',
129
+ },
130
+ {
131
+ label: '扩散',
132
+ value: 'bubble',
133
+ },
134
+ ],
135
+ default: 'icon',
136
+ },
137
+ color: {
138
+ type: 'string',
139
+ title: '颜色',
140
+ ui: { widget: 'myColor', visibleIf: { type: ['circle', 'square'] } },
141
+ },
142
+ size: {
143
+ type: 'number',
144
+ title: '尺寸',
145
+ ui: { visibleIf: { type: ['circle', 'square', 'wave', 'bubble'] } },
146
+ },
147
+ imageUrl: {
148
+ type: 'string',
149
+ title: '图片',
150
+ ui: {
151
+ widget: 'myPicture',
152
+ visibleIf: { type: ['icon'] },
153
+ },
154
+ },
155
+ width: {
156
+ type: 'number',
157
+ title: '宽度',
158
+ default: 19,
159
+ ui: { visibleIf: { type: ['icon'] } },
160
+ },
161
+ height: {
162
+ type: 'number',
163
+ title: '高度',
164
+ default: 25,
165
+ ui: { visibleIf: { type: ['icon'] } },
166
+ },
167
+ XOffset: {
168
+ type: 'number',
169
+ title: 'X轴偏移',
170
+ ui: { visibleIf: { type: ['icon'] } },
171
+ },
172
+ YOffset: {
173
+ type: 'number',
174
+ title: 'Y轴偏移',
175
+ ui: { visibleIf: { type: ['icon'] } },
176
+ },
177
+ enableMarkerClusterer: {
178
+ type: 'boolean',
179
+ title: '是否聚合',
180
+ ui: { visibleIf: { type: ['icon'] } },
181
+ },
182
+ },
183
+ required: [],
184
+ },
185
+ ui: { grid: { arraySpan: 24 }, spanControl: 24 } as SFArrayWidgetSchema,
186
+ })
187
+ groups = [];
188
+ @Data({
189
+ properties: {
190
+ id: { type: 'string', title: 'id' },
191
+ address: { type: 'string', title: '地点' },
192
+ information: { type: 'string', title: '信息' },
193
+ group: { type: 'string', title: '标记分组' },
194
+ lng: { type: 'number', title: '经度' },
195
+ lat: { type: 'number', title: '纬度' },
196
+ icon: { type: 'string', title: '图标' },
197
+ },
198
+ })
199
+ _data: any[] = [
200
+ {
201
+ id: '1',
202
+ address: '',
203
+ information: '暂无信息',
204
+ group: '',
205
+ lng: '120.7',
206
+ lat: '28',
207
+ },
208
+ ];
209
+ // id: string;
210
+ @DataOutput(['id', 'address', 'lng', 'lat'])
211
+ @Event('选中值改变', {
212
+ params: {
213
+ properties: {
214
+ id: { type: 'string', title: 'id' },
215
+ address: { type: 'string', title: '地点' },
216
+ lng: { type: 'number', title: '经度' },
217
+ lat: { type: 'number', title: '纬度' },
218
+ },
219
+ },
220
+ })
221
+ makerClick = new EventEmitter();
222
+ @DataInput('选中id')
223
+ selectedId: string;
224
+ @Event('点击', {
225
+ params: {
226
+ properties: {
227
+ id: { type: 'string', title: 'id' },
228
+ address: { type: 'string', title: '地点' },
229
+ lng: { type: 'number', title: '经度' },
230
+ lat: { type: 'number', title: '纬度' },
231
+ },
232
+ },
233
+ })
234
+ onClick = new EventEmitter();
235
+
236
+ layers = [];
237
+ inited: boolean;
238
+ // defaultLayer: any;
239
+ layerMap = {};
240
+ clickData: any;
241
+ clickTimeout: any;
242
+ @ViewChild('menu')
243
+ menu: any;
244
+ subMarkers: any[];
245
+ dataMap = {};
246
+ groupData: {};
247
+ lastSelect: any;
248
+ currentSelectedId: string;
249
+ textLayer: any;
250
+ destroy$ = new Subject();
251
+ constructor(
252
+ protected parent: CustomBaiduMapComponent,
253
+ protected zone: NgZone,
254
+ private fileUrlService: FileUrlService,
255
+ private nzContextMenuService: NzContextMenuService,
256
+ ) {
257
+ super(parent, zone);
258
+ }
259
+
260
+ ngOnInit(): void {
261
+ super.ngOnInit();
262
+ if (this.showLabel && this.showLabelMinZoom != null) {
263
+ this.parent.zoomChange.pipe(takeUntil(this.destroy$)).subscribe((zoom) => {
264
+ this.updateTextVisible(zoom);
265
+ });
266
+ }
267
+ }
268
+
269
+ ngOnChanges(changes: SimpleChanges) {
270
+ if (this.inited) {
271
+ if (changes._data) {
272
+ this.zone.runOutsideAngular(() => {
273
+ this.updateData();
274
+ });
275
+ }
276
+ if (changes.selectedId) {
277
+ if (this.selectedId != this.currentSelectedId) {
278
+ this.select(this.selectedId, { move: true });
279
+ }
280
+ }
281
+ }
282
+ }
283
+
284
+ ngOnDestroy(): void {
285
+ super.ngOnDestroy();
286
+ this.destroy$.next();
287
+ this.destroy$.complete();
288
+ }
289
+
290
+ createLayers(): any[] {
291
+ const layers = [];
292
+ this.layerMap = {};
293
+ const defaultLayer = this.createLayer();
294
+ this.layerMap[''] = defaultLayer;
295
+ layers.push(defaultLayer);
296
+ if (this.groups?.length) {
297
+ this.groups.forEach((group) => {
298
+ if (group.group) {
299
+ const layer = this.createLayer(group);
300
+ this.layerMap[group.group] = layer;
301
+ layers.push(layer);
302
+ }
303
+ });
304
+ }
305
+ if (!this.enableMarkerClusterer && this.showLabel) {
306
+ const textOptions = {
307
+ ...this.getTextOptions(this.labelFont),
308
+ // color: '#fff',
309
+ // fontFamily: 'Microsoft Yahei',
310
+ // fontSize: 14,
311
+ flat: false,
312
+ collides: true,
313
+ offset: [this.labelOffsetX || 0, this.labelOffsetY || 0],
314
+ padding: [2, 2],
315
+ margin: [0, 0],
316
+ };
317
+ this.textLayer = new mapvgl.TextLayer(textOptions);
318
+ if (this.showLabelMinZoom != null) {
319
+ this.parent.init$.then(() => {
320
+ const zoom = this.parent.map.getZoom();
321
+ this.updateTextVisible(zoom);
322
+ });
323
+ }
324
+ layers.push(this.textLayer);
325
+ }
326
+ return layers;
327
+ }
328
+
329
+ createLayer(group?: any) {
330
+ let layer: any;
331
+ const type = group?.type;
332
+ if (type === 'circle' || type === 'square') {
333
+ const options = {
334
+ shape: type,
335
+ color: group?.color || 'rgba(50, 50, 200, 1)',
336
+ size: group?.size || 10,
337
+ };
338
+ this.addPickEvent(options);
339
+ layer = new mapvgl.PointLayer(options);
340
+ } else if (type === 'bubble' || type === 'wave') {
341
+ const options = {
342
+ type,
343
+ color: group?.color || 'rgba(255, 0, 0, 1)',
344
+ size: group?.size || 10,
345
+ duration: 1,
346
+ trail: 1,
347
+ };
348
+ this.addPickEvent(options);
349
+ layer = new mapvgl.CircleLayer(options);
350
+ } else {
351
+ const iconOptions = this.getIconOptions(group);
352
+ if (this.enableMarkerClusterer || group?.enableMarkerClusterer) {
353
+ const options: any = {
354
+ iconOptions,
355
+ textOptions: this.getTextOptions(this.clusterFont),
356
+ minSize: this.clusterMinSize || 25,
357
+ maxSize: this.clusterMaxSize || 40,
358
+ };
359
+ if (this.clusterGradient?.length) {
360
+ const gradient: any = {};
361
+ gradient[0] = this.clusterGradient[0];
362
+ this.clusterGradient.slice(1).forEach((g, i) => {
363
+ gradient[(i + 1) / this.clusterGradient.length] = g;
364
+ });
365
+ options.gradient = gradient;
366
+ }
367
+ if (this.clusterMaxZoom != null) {
368
+ options.maxZoom = this.clusterMaxZoom;
369
+ }
370
+ this.addPickEvent(options);
371
+ layer = new mapvgl.ClusterLayer(options);
372
+ } else {
373
+ this.addPickEvent(iconOptions);
374
+ layer = new mapvgl.IconLayer(iconOptions);
375
+ }
376
+ }
377
+ return layer;
378
+ }
379
+
380
+ updateTextVisible(zoom?: number) {
381
+ if (this.textLayer) {
382
+ if (zoom >= this.showLabelMinZoom) {
383
+ this.textLayer.show();
384
+ } else {
385
+ this.textLayer.hide();
386
+ }
387
+ }
388
+ }
389
+
390
+ updateData() {
391
+ this.dataMap = {};
392
+ if (this.toCenter && this._data.length > 0) {
393
+ let maxLng = -180;
394
+ let minLng = 180;
395
+ let maxLat = -90;
396
+ let minLat = 90;
397
+ this._data.forEach((res) => {
398
+ maxLng = Math.max(maxLng, res.lng);
399
+ minLng = Math.min(minLng, res.lng);
400
+ maxLat = Math.max(maxLat, res.lat);
401
+ minLat = Math.min(minLat, res.lat);
402
+ });
403
+ this.parent.setRectCenterAndZoom(minLng, maxLng, minLat, maxLat);
404
+ }
405
+ const groupData = {};
406
+ this.groupData = groupData;
407
+ const textData = [];
408
+ const groups = Object.keys(this.layerMap);
409
+ groups.forEach((group) => {
410
+ groupData[group] = [];
411
+ });
412
+ // const defaultData = [];
413
+ this._data.forEach((record) => {
414
+ let groupName = record.group;
415
+ if (groupName == null || this.layerMap[groupName] == null) {
416
+ groupName = '';
417
+ }
418
+ let id = record.id_value || record.id;
419
+ if (id == null || id == '') {
420
+ id = getUUID();
421
+ }
422
+ const item: any = {
423
+ geometry: {
424
+ type: 'Point',
425
+ coordinates: [record.lng, record.lat],
426
+ },
427
+ properties: {
428
+ text: record.address,
429
+ id,
430
+ group: groupName,
431
+ raw: record,
432
+ },
433
+ };
434
+ // MapVGL的bug,ClusterLayer的iconOptions无效,只能通过properties设置
435
+
436
+ const layer = this.layerMap[groupName];
437
+ if (layer != null && layer instanceof mapvgl.ClusterLayer) {
438
+ const options = layer.getOptions();
439
+ if (options.iconOptions) {
440
+ const { height, width, offset, icon } = options.iconOptions;
441
+ item.properties = { height, width, offset, icon, ...item.properties };
442
+ }
443
+ }
444
+ if (record.icon) {
445
+ item.properties.icon = this.fileUrlService.getUrl(record.icon);
446
+ }
447
+ // if (this.selectedId && this.selectedId == id) {
448
+ // this.updateSize(item, 1.5);
449
+ // this.lastSelect = item;
450
+ // }
451
+ groupData[groupName].push(item);
452
+ this.dataMap[item.properties.id] = item;
453
+ if (this.textLayer) {
454
+ textData.push(item);
455
+ }
456
+ });
457
+ if (this.selectedId) {
458
+ this.select(this.selectedId, { move: this.selectedId != this.currentSelectedId, resetLayer: false, force: true });
459
+ }
460
+ groups.forEach((group) => {
461
+ const layer = this.layerMap[group];
462
+ const data = groupData[group];
463
+ layer.setData(data);
464
+ });
465
+ if (this.textLayer) {
466
+ this.textLayer.setData(textData);
467
+ }
468
+ }
469
+
470
+ getIconOptions(group: any) {
471
+ let icon = this.iconUrl || 'assets/img/screen/marker.png';
472
+ let height = this.iconHeight || 38.25;
473
+ let width = this.iconWidth || 25;
474
+ let offsetX = this.iconOffsetX == null ? 0 : this.iconOffsetX;
475
+ let offsetY = this.iconOffsetY == null ? -height / 2 : this.iconOffsetY;
476
+ if (group && group.imageUrl) {
477
+ icon = this.fileUrlService.getUrl(group.imageUrl);
478
+ width = group.width || width;
479
+ height = group.height || height;
480
+ offsetX = group.XOffset != null ? group.XOffset : 0;
481
+ offsetY = group.YOffset != null ? group.YOffset : -height / 2;
482
+ }
483
+ const iconOptions: any = {
484
+ icon,
485
+ width,
486
+ height,
487
+ offset: [offsetX, offsetY],
488
+ };
489
+ return iconOptions;
490
+ }
491
+
492
+ getTextOptions(font: any) {
493
+ const textOptions: any = {};
494
+ if (font) {
495
+ if (font.size) textOptions.fontSize = font.size;
496
+ if (font.family) textOptions.fontFamily = font.family;
497
+ if (font.color) textOptions.color = font.color;
498
+ }
499
+ return textOptions;
500
+ }
501
+
502
+ addPickEvent(options: any) {
503
+ options.enablePicked = true;
504
+ options.onClick = ({ dataItem }) => {
505
+ // 每个图层都会触发一次click事件,如果每个图层都没有点中标记点,传出null
506
+ if (dataItem) {
507
+ this.clickData = dataItem;
508
+ }
509
+ if (this.unselectOnClickBlank !== false && this.clickTimeout == null) {
510
+ this.clickTimeout = setTimeout(() => {
511
+ if (this.clickData == null) {
512
+ this.selectedId = null;
513
+ this.select(null);
514
+ }
515
+ this.clickTimeout = null;
516
+ this.clickData = null;
517
+ this.subMarkers = null;
518
+ });
519
+ }
520
+ if (dataItem) {
521
+ if (dataItem.type === 'Feature') {
522
+ const coordinates = dataItem.geometry.coordinates;
523
+ this.parent.setCenterAndZoom(coordinates[0], coordinates[1], this.parent.map.getZoom() + 2);
524
+ } else {
525
+ const data = dataItem.properties.raw;
526
+ if (data) {
527
+ this.selectedId = dataItem.properties.id;
528
+ this.select(dataItem.properties.id);
529
+ this.zone.run(() => {
530
+ this.onClick.emit({ ...data, id: data.id_value || data.id });
531
+ });
532
+ }
533
+ }
534
+ }
535
+ };
536
+ if (this.parent.showType === 'mouseover') {
537
+ let infoWindow = null;
538
+ let infoWindowData = null;
539
+ options.onMousemove = ({ dataItem }) => {
540
+ const data = dataItem != null ? dataItem.properties.raw : null;
541
+ if (infoWindow != null && infoWindowData != data) {
542
+ infoWindow.close();
543
+ infoWindow = null;
544
+ }
545
+ if (data && data.information && infoWindow == null) {
546
+ infoWindowData = data;
547
+ infoWindow = this.parent.openInfoWindow(data, data.lng, data.lat);
548
+ }
549
+ };
550
+ }
551
+ }
552
+
553
+ select(id: any, options: { move?: boolean; resetLayer?: boolean; force?: boolean } = {}) {
554
+ if (id != this.currentSelectedId || options.force) {
555
+ let item: any;
556
+ if (id != null && id !== '') {
557
+ item = this.dataMap[id];
558
+ // 如果找不到数据,可能是数据还没加载,等数据加载了再执行
559
+ if (item == null) {
560
+ return;
561
+ }
562
+ }
563
+ this.currentSelectedId = id;
564
+ let lastSelectGroup: string;
565
+ let currentSelectGroup: string;
566
+ let selectedData: any;
567
+ if (this.lastSelect) {
568
+ lastSelectGroup = this.lastSelect.properties.group;
569
+ this.updateSize(this.lastSelect, 1);
570
+ this.lastSelect = null;
571
+ }
572
+ if (item) {
573
+ currentSelectGroup = item.properties.group;
574
+ this.updateSize(item, 1.5);
575
+ this.lastSelect = item;
576
+ selectedData = item.properties.raw;
577
+ if (options.move) {
578
+ const layer = this.layerMap[currentSelectGroup];
579
+ let zoom = this.parent.map.getZoom();
580
+ if (layer instanceof mapvgl.ClusterLayer && this.clusterMaxZoom != null && zoom <= this.clusterMaxZoom) {
581
+ zoom = this.clusterMaxZoom + 2;
582
+ }
583
+ this.parent.setCenterAndZoom(selectedData.lng, selectedData.lat, zoom);
584
+ }
585
+
586
+ if (selectedData.information && this.parent.showType !== 'mouseover') {
587
+ // 防止其他图层将信息窗口关闭
588
+ setTimeout(() => {
589
+ this.parent.openInfoWindow(selectedData, selectedData.lng, selectedData.lat);
590
+ });
591
+ }
592
+ } else {
593
+ selectedData = {};
594
+ }
595
+ if (options.resetLayer !== false) {
596
+ if (currentSelectGroup != null) {
597
+ this.resetLayerData(currentSelectGroup);
598
+ }
599
+ if (lastSelectGroup != null && lastSelectGroup !== currentSelectGroup) {
600
+ this.resetLayerData(lastSelectGroup);
601
+ }
602
+ }
603
+ // 如果选中的id找不到对应数据,可能是数据还没加载,
604
+ if (id == null || item != null) {
605
+ this.zone.run(() => {
606
+ this.makerClick.emit({ ...selectedData, id: selectedData.id_value || selectedData.id });
607
+ });
608
+ }
609
+ }
610
+ }
611
+
612
+ resetLayerData(group: string) {
613
+ const layer = this.layerMap[group];
614
+ const data = this.groupData[group];
615
+ if (layer && data) {
616
+ layer.setData(data);
617
+ }
618
+ }
619
+
620
+ updateSize(item: any, scale: number) {
621
+ if (item && this.enlargeOnSelect) {
622
+ const layer = this.layerMap[item.properties.group];
623
+ let options: any;
624
+
625
+ if (layer instanceof mapvgl.ClusterLayer) {
626
+ options = layer.getOptions().iconOptions;
627
+ } else {
628
+ options = layer.getOptions();
629
+ }
630
+ const { height, width, offset } = options;
631
+ item.properties.height = height * scale;
632
+ item.properties.width = width * scale;
633
+ if (item.properties.offset) {
634
+ item.properties.offset = [offset[0] * scale, offset[1] * scale];
635
+ }
636
+ }
637
+ }
638
+ }