bbj-screen-widget 2.4.61 → 2.4.62
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.
- package/core/package.json +2 -10
- package/core/src/service/baidu-map.service.ts +107 -0
- package/karma.conf.js +32 -0
- package/ng-package.json +59 -0
- package/package.json +4 -13
- package/src/lib/announcement/announcement.component.html +3 -0
- package/src/lib/announcement/announcement.component.less +5 -0
- package/src/lib/announcement/announcement.component.spec.ts +25 -0
- package/src/lib/announcement/announcement.component.ts +55 -0
- package/src/lib/announcement/announcement.module.ts +19 -0
- package/src/lib/audio/audio.component.html +6 -0
- package/src/lib/audio/audio.component.less +12 -0
- package/src/lib/audio/audio.component.spec.ts +25 -0
- package/src/lib/audio/audio.component.ts +167 -0
- package/src/lib/audio/audio.module.ts +15 -0
- package/src/lib/background/background.component.html +1 -0
- package/src/lib/background/background.component.less +6 -0
- package/src/lib/background/background.component.spec.ts +25 -0
- package/src/lib/background/background.component.ts +33 -0
- package/src/lib/background/background.module.ts +14 -0
- package/src/lib/bar-chart-three-d/bar-chart-three-d.component.html +1 -0
- package/src/lib/bar-chart-three-d/bar-chart-three-d.component.less +8 -0
- package/src/lib/bar-chart-three-d/bar-chart-three-d.component.spec.ts +25 -0
- package/src/lib/bar-chart-three-d/bar-chart-three-d.component.ts +271 -0
- package/src/lib/bar-chart-three-d/bar-chart-three-d.module.ts +15 -0
- package/src/lib/basic-bar-chart/basic-bar-chart.component.html +7 -0
- package/src/lib/basic-bar-chart/basic-bar-chart.component.less +5 -0
- package/src/lib/basic-bar-chart/basic-bar-chart.component.spec.ts +25 -0
- package/src/lib/basic-bar-chart/basic-bar-chart.component.ts +493 -0
- package/src/lib/basic-bar-chart/basic-bar-chart.module.ts +21 -0
- package/src/lib/basic-line-chart/basic-line-chart.component.html +7 -0
- package/src/lib/basic-line-chart/basic-line-chart.component.less +8 -0
- package/src/lib/basic-line-chart/basic-line-chart.component.spec.ts +25 -0
- package/src/lib/basic-line-chart/basic-line-chart.component.ts +654 -0
- package/src/lib/basic-line-chart/basic-line-chart.module.ts +15 -0
- package/src/lib/basic-pie-chart/basic-pie-chart.component.html +7 -0
- package/src/lib/basic-pie-chart/basic-pie-chart.component.less +8 -0
- package/src/lib/basic-pie-chart/basic-pie-chart.component.spec.ts +25 -0
- package/src/lib/basic-pie-chart/basic-pie-chart.component.ts +439 -0
- package/src/lib/basic-pie-chart/basic-pie-chart.module.ts +15 -0
- package/src/lib/basic-planimetric-map/basic-planimetric-map.component.html +2 -0
- package/src/lib/basic-planimetric-map/basic-planimetric-map.component.less +9 -0
- package/src/lib/basic-planimetric-map/basic-planimetric-map.component.spec.ts +25 -0
- package/src/lib/basic-planimetric-map/basic-planimetric-map.component.ts +211 -0
- package/src/lib/basic-planimetric-map/basic-planimetric-map.module.ts +16 -0
- package/src/lib/breathing-bubble-layer/breathing-bubble-layer.component.css +0 -0
- package/src/lib/breathing-bubble-layer/breathing-bubble-layer.component.html +1 -0
- package/src/lib/breathing-bubble-layer/breathing-bubble-layer.component.spec.ts +25 -0
- package/src/lib/breathing-bubble-layer/breathing-bubble-layer.component.ts +487 -0
- package/src/lib/breathing-bubble-layer/breathing-bubble-layer.module.ts +14 -0
- package/src/lib/bubble-chart/bubble-chart.component.html +7 -0
- package/src/lib/bubble-chart/bubble-chart.component.less +8 -0
- package/src/lib/bubble-chart/bubble-chart.component.spec.ts +25 -0
- package/src/lib/bubble-chart/bubble-chart.component.ts +307 -0
- package/src/lib/bubble-chart/bubble-chart.module.ts +15 -0
- package/src/lib/bulletin-board/bulletin-board.component.html +15 -0
- package/src/lib/bulletin-board/bulletin-board.component.less +27 -0
- package/src/lib/bulletin-board/bulletin-board.component.spec.ts +25 -0
- package/src/lib/bulletin-board/bulletin-board.component.ts +127 -0
- package/src/lib/bulletin-board/bulletin-board.module.ts +20 -0
- package/src/lib/button/button.component.html +1 -0
- package/src/lib/button/button.component.less +17 -0
- package/src/lib/button/button.component.spec.ts +25 -0
- package/src/lib/button/button.component.ts +137 -0
- package/src/lib/button/button.module.ts +16 -0
- package/src/lib/calendar/background-events/background-events.component.html +0 -0
- package/src/lib/calendar/background-events/background-events.component.less +0 -0
- package/src/lib/calendar/background-events/background-events.component.spec.ts +25 -0
- package/src/lib/calendar/background-events/background-events.component.ts +51 -0
- package/src/lib/calendar/calendar-events-child.ts +27 -0
- package/src/lib/calendar/calendar.component.html +2 -0
- package/src/lib/calendar/calendar.component.less +14 -0
- package/src/lib/calendar/calendar.component.spec.ts +25 -0
- package/src/lib/calendar/calendar.component.ts +151 -0
- package/src/lib/calendar/calendar.module.ts +27 -0
- package/src/lib/calendar/calendar.util.ts +14 -0
- package/src/lib/calendar/events/events.component.html +0 -0
- package/src/lib/calendar/events/events.component.less +0 -0
- package/src/lib/calendar/events/events.component.spec.ts +25 -0
- package/src/lib/calendar/events/events.component.ts +61 -0
- package/src/lib/checkbox/checkbox.component.html +61 -0
- package/src/lib/checkbox/checkbox.component.less +104 -0
- package/src/lib/checkbox/checkbox.component.spec.ts +25 -0
- package/src/lib/checkbox/checkbox.component.ts +292 -0
- package/src/lib/checkbox/checkbox.module.ts +16 -0
- package/src/lib/cross-table/cross-table.component.html +16 -0
- package/src/lib/cross-table/cross-table.component.less +75 -0
- package/src/lib/cross-table/cross-table.component.spec.ts +25 -0
- package/src/lib/cross-table/cross-table.component.ts +257 -0
- package/src/lib/cross-table/cross-table.module.ts +18 -0
- package/src/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.html +32 -0
- package/src/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.less +11 -0
- package/src/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.spec.ts +25 -0
- package/src/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.ts +689 -0
- package/src/lib/custom-baidu-map/baidu-polyline-layer/baidu-polyline-layer.component.html +0 -0
- package/src/lib/custom-baidu-map/baidu-polyline-layer/baidu-polyline-layer.component.less +0 -0
- package/src/lib/custom-baidu-map/baidu-polyline-layer/baidu-polyline-layer.component.spec.ts +25 -0
- package/src/lib/custom-baidu-map/baidu-polyline-layer/baidu-polyline-layer.component.ts +248 -0
- package/src/lib/custom-baidu-map/base-layer.ts +50 -0
- package/src/lib/custom-baidu-map/custom-baidu-map.component.html +15 -0
- package/src/lib/custom-baidu-map/custom-baidu-map.component.less +69 -0
- package/src/lib/custom-baidu-map/custom-baidu-map.component.spec.ts +25 -0
- package/src/lib/custom-baidu-map/custom-baidu-map.component.ts +652 -0
- package/src/lib/custom-baidu-map/custom-baidu-map.module.ts +41 -0
- package/src/lib/custom-baidu-map/typhoon-area-layer/typhoon-area-layer.component.html +0 -0
- package/src/lib/custom-baidu-map/typhoon-area-layer/typhoon-area-layer.component.less +0 -0
- package/src/lib/custom-baidu-map/typhoon-area-layer/typhoon-area-layer.component.spec.ts +25 -0
- package/src/lib/custom-baidu-map/typhoon-area-layer/typhoon-area-layer.component.ts +99 -0
- package/src/lib/custom-baidu-map/wind-layer/wind-layer.component.html +0 -0
- package/src/lib/custom-baidu-map/wind-layer/wind-layer.component.less +0 -0
- package/src/lib/custom-baidu-map/wind-layer/wind-layer.component.spec.ts +25 -0
- package/src/lib/custom-baidu-map/wind-layer/wind-layer.component.ts +404 -0
- package/src/lib/data-map/data-map.component.html +9 -0
- package/src/lib/data-map/data-map.component.less +0 -0
- package/src/lib/data-map/data-map.component.spec.ts +25 -0
- package/src/lib/data-map/data-map.component.ts +105 -0
- package/src/lib/data-map/data-map.module.ts +15 -0
- package/src/lib/date-picker/date-picker.component.html +32 -0
- package/src/lib/date-picker/date-picker.component.less +20 -0
- package/src/lib/date-picker/date-picker.component.spec.ts +25 -0
- package/src/lib/date-picker/date-picker.component.ts +389 -0
- package/src/lib/date-picker/date-picker.module.ts +18 -0
- package/src/lib/drop-down-detail-list/drop-down-detail-list.component.html +25 -0
- package/src/lib/drop-down-detail-list/drop-down-detail-list.component.less +35 -0
- package/src/lib/drop-down-detail-list/drop-down-detail-list.component.spec.ts +25 -0
- package/src/lib/drop-down-detail-list/drop-down-detail-list.component.ts +117 -0
- package/src/lib/drop-down-detail-list/drop-down-detail-list.module.ts +15 -0
- package/src/lib/dynamic-list/dynamic-list.component.html +15 -0
- package/src/lib/dynamic-list/dynamic-list.component.less +31 -0
- package/src/lib/dynamic-list/dynamic-list.component.spec.ts +25 -0
- package/src/lib/dynamic-list/dynamic-list.component.ts +57 -0
- package/src/lib/dynamic-list/dynamic-list.module.ts +15 -0
- package/src/lib/funnel-chart/funnel-chart.component.html +7 -0
- package/src/lib/funnel-chart/funnel-chart.component.less +8 -0
- package/src/lib/funnel-chart/funnel-chart.component.spec.ts +25 -0
- package/src/lib/funnel-chart/funnel-chart.component.ts +198 -0
- package/src/lib/funnel-chart/funnel-chart.module.ts +15 -0
- package/src/lib/gantt/gantt.component.html +10 -0
- package/src/lib/gantt/gantt.component.less +76 -0
- package/src/lib/gantt/gantt.component.spec.ts +25 -0
- package/src/lib/gantt/gantt.component.ts +213 -0
- package/src/lib/gantt/gantt.module.ts +37 -0
- package/src/lib/gauge/gauge.component.html +1 -0
- package/src/lib/gauge/gauge.component.less +8 -0
- package/src/lib/gauge/gauge.component.spec.ts +25 -0
- package/src/lib/gauge/gauge.component.ts +268 -0
- package/src/lib/gauge/gauge.module.ts +15 -0
- package/src/lib/gauge-progress/gauge-progress.component.html +29 -0
- package/src/lib/gauge-progress/gauge-progress.component.less +51 -0
- package/src/lib/gauge-progress/gauge-progress.component.ts +293 -0
- package/src/lib/gauge-progress/gauge.module.ts +17 -0
- package/src/lib/general-text/general-text.component.html +7 -0
- package/src/lib/general-text/general-text.component.less +8 -0
- package/src/lib/general-text/general-text.component.spec.ts +25 -0
- package/src/lib/general-text/general-text.component.ts +114 -0
- package/src/lib/general-text/general-text.module.ts +15 -0
- package/src/lib/iconfont/icon.ts +198 -0
- package/src/lib/iconfont/iconfont.component.html +4 -0
- package/src/lib/iconfont/iconfont.component.less +5 -0
- package/src/lib/iconfont/iconfont.component.spec.ts +25 -0
- package/src/lib/iconfont/iconfont.component.ts +42 -0
- package/src/lib/iconfont/iconfont.module.ts +15 -0
- package/src/lib/iframe/iframe.component.html +1 -0
- package/src/lib/iframe/iframe.component.less +13 -0
- package/src/lib/iframe/iframe.component.spec.ts +25 -0
- package/src/lib/iframe/iframe.component.ts +34 -0
- package/src/lib/iframe/iframe.module.ts +15 -0
- package/src/lib/image/image.component.html +2 -0
- package/src/lib/image/image.component.less +13 -0
- package/src/lib/image/image.component.spec.ts +25 -0
- package/src/lib/image/image.component.ts +79 -0
- package/src/lib/image/image.module.ts +14 -0
- package/src/lib/item-swiper/item-swiper.component.html +48 -0
- package/src/lib/item-swiper/item-swiper.component.less +75 -0
- package/src/lib/item-swiper/item-swiper.component.spec.ts +25 -0
- package/src/lib/item-swiper/item-swiper.component.ts +277 -0
- package/src/lib/item-swiper/item-swiper.module.ts +17 -0
- package/src/lib/line-bar-chart/line-bar-chart.component.html +7 -0
- package/src/lib/line-bar-chart/line-bar-chart.component.less +3 -0
- package/src/lib/line-bar-chart/line-bar-chart.component.spec.ts +25 -0
- package/src/lib/line-bar-chart/line-bar-chart.component.ts +346 -0
- package/src/lib/line-bar-chart/line-bar-chart.module.ts +15 -0
- package/src/lib/line-light-flow/line-light-flow.component.css +0 -0
- package/src/lib/line-light-flow/line-light-flow.component.html +3 -0
- package/src/lib/line-light-flow/line-light-flow.component.spec.ts +25 -0
- package/src/lib/line-light-flow/line-light-flow.component.ts +274 -0
- package/src/lib/line-light-flow/line-light-flow.module.ts +21 -0
- package/src/lib/liquid-fill/liquid-fill.component.html +1 -0
- package/src/lib/liquid-fill/liquid-fill.component.less +8 -0
- package/src/lib/liquid-fill/liquid-fill.component.spec.ts +25 -0
- package/src/lib/liquid-fill/liquid-fill.component.ts +127 -0
- package/src/lib/liquid-fill/liquid-fill.module.ts +15 -0
- package/src/lib/marquee/marquee.component.html +5 -0
- package/src/lib/marquee/marquee.component.less +9 -0
- package/src/lib/marquee/marquee.component.spec.ts +25 -0
- package/src/lib/marquee/marquee.component.ts +84 -0
- package/src/lib/marquee/marquee.module.ts +14 -0
- package/src/lib/mip-anim/mip-anim.component.html +1 -0
- package/src/lib/mip-anim/mip-anim.component.less +7 -0
- package/src/lib/mip-anim/mip-anim.component.spec.ts +25 -0
- package/src/lib/mip-anim/mip-anim.component.ts +18 -0
- package/src/lib/mip-anim/mip-anim.module.ts +14 -0
- package/src/lib/multi-title-gauge/multi-title-gauge.component.html +1 -0
- package/src/lib/multi-title-gauge/multi-title-gauge.component.less +9 -0
- package/src/lib/multi-title-gauge/multi-title-gauge.component.spec.ts +25 -0
- package/src/lib/multi-title-gauge/multi-title-gauge.component.ts +231 -0
- package/src/lib/multi-title-gauge/multi-title-gauge.module.ts +19 -0
- package/src/lib/number-flop/number-flop.component.html +31 -0
- package/src/lib/number-flop/number-flop.component.less +155 -0
- package/src/lib/number-flop/number-flop.component.spec.ts +25 -0
- package/src/lib/number-flop/number-flop.component.ts +96 -0
- package/src/lib/number-flop/number-flop.module.ts +14 -0
- package/src/lib/parent-container/parent-container.component.html +0 -0
- package/src/lib/parent-container/parent-container.component.less +0 -0
- package/src/lib/parent-container/parent-container.component.spec.ts +25 -0
- package/src/lib/parent-container/parent-container.component.ts +21 -0
- package/src/lib/parent-container/parent-container.module.ts +14 -0
- package/src/lib/percent-pie-chart/percent-pie-chart.component.html +8 -0
- package/src/lib/percent-pie-chart/percent-pie-chart.component.less +8 -0
- package/src/lib/percent-pie-chart/percent-pie-chart.component.spec.ts +25 -0
- package/src/lib/percent-pie-chart/percent-pie-chart.component.ts +213 -0
- package/src/lib/percent-pie-chart/percent-pie-chart.module.ts +15 -0
- package/src/lib/pie3d-chart/pie3d-chart.component.html +1 -0
- package/src/lib/pie3d-chart/pie3d-chart.component.less +9 -0
- package/src/lib/pie3d-chart/pie3d-chart.component.spec.ts +25 -0
- package/src/lib/pie3d-chart/pie3d-chart.component.ts +278 -0
- package/src/lib/pie3d-chart/pie3d-chart.module.ts +16 -0
- package/src/lib/planimetric-map2d/fly-line-layer/fly-line-layer.component.html +0 -0
- package/src/lib/planimetric-map2d/fly-line-layer/fly-line-layer.component.less +0 -0
- package/src/lib/planimetric-map2d/fly-line-layer/fly-line-layer.component.spec.ts +25 -0
- package/src/lib/planimetric-map2d/fly-line-layer/fly-line-layer.component.ts +411 -0
- package/src/lib/planimetric-map2d/fly-line-layer/fly-line-layer.module.ts +13 -0
- package/src/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.component.html +1 -0
- package/src/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.component.less +0 -0
- package/src/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.component.spec.ts +25 -0
- package/src/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.component.ts +235 -0
- package/src/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.module.ts +16 -0
- package/src/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.component.html +0 -0
- package/src/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.component.less +0 -0
- package/src/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.component.spec.ts +25 -0
- package/src/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.component.ts +107 -0
- package/src/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.module.ts +17 -0
- package/src/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.component.html +0 -0
- package/src/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.component.less +0 -0
- package/src/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.component.spec.ts +25 -0
- package/src/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.component.ts +337 -0
- package/src/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.module.ts +18 -0
- package/src/lib/planimetric-map2d/planimetric-map2d.component.html +11 -0
- package/src/lib/planimetric-map2d/planimetric-map2d.component.less +9 -0
- package/src/lib/planimetric-map2d/planimetric-map2d.component.spec.ts +25 -0
- package/src/lib/planimetric-map2d/planimetric-map2d.component.ts +690 -0
- package/src/lib/planimetric-map2d/planimetric-map2d.module.ts +29 -0
- package/src/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.component.html +0 -0
- package/src/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.component.less +0 -0
- package/src/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.component.spec.ts +25 -0
- package/src/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.component.ts +123 -0
- package/src/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.module.ts +14 -0
- package/src/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.component.html +0 -0
- package/src/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.component.less +0 -0
- package/src/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.component.spec.ts +25 -0
- package/src/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.component.ts +229 -0
- package/src/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.module.ts +14 -0
- package/src/lib/planimetric-map3d/planimetric-map3d.component.html +2 -0
- package/src/lib/planimetric-map3d/planimetric-map3d.component.less +10 -0
- package/src/lib/planimetric-map3d/planimetric-map3d.component.spec.ts +25 -0
- package/src/lib/planimetric-map3d/planimetric-map3d.component.ts +227 -0
- package/src/lib/planimetric-map3d/planimetric-map3d.module.ts +17 -0
- package/src/lib/radar-chart/radar-chart.component.html +7 -0
- package/src/lib/radar-chart/radar-chart.component.less +8 -0
- package/src/lib/radar-chart/radar-chart.component.spec.ts +25 -0
- package/src/lib/radar-chart/radar-chart.component.ts +219 -0
- package/src/lib/radar-chart/radar-chart.module.ts +15 -0
- package/src/lib/radio/radio.component.html +18 -0
- package/src/lib/radio/radio.component.less +61 -0
- package/src/lib/radio/radio.component.spec.ts +25 -0
- package/src/lib/radio/radio.component.ts +116 -0
- package/src/lib/radio/radio.module.ts +16 -0
- package/src/lib/rate/rate.component.html +16 -0
- package/src/lib/rate/rate.component.less +39 -0
- package/src/lib/rate/rate.component.spec.ts +25 -0
- package/src/lib/rate/rate.component.ts +40 -0
- package/src/lib/rate/rate.module.ts +18 -0
- package/src/lib/scatter3d/scatter3d.component.html +1 -0
- package/src/lib/scatter3d/scatter3d.component.less +8 -0
- package/src/lib/scatter3d/scatter3d.component.spec.ts +25 -0
- package/src/lib/scatter3d/scatter3d.component.ts +129 -0
- package/src/lib/scatter3d/scatter3d.module.ts +15 -0
- package/src/lib/screen-widget.module.ts +592 -0
- package/src/lib/search/search.component.html +30 -0
- package/src/lib/search/search.component.less +30 -0
- package/src/lib/search/search.component.spec.ts +25 -0
- package/src/lib/search/search.component.ts +103 -0
- package/src/lib/search/search.module.ts +22 -0
- package/src/lib/select/select.component.html +30 -0
- package/src/lib/select/select.component.less +117 -0
- package/src/lib/select/select.component.spec.ts +25 -0
- package/src/lib/select/select.component.ts +297 -0
- package/src/lib/select/select.module.ts +18 -0
- package/src/lib/shape/shape.component.html +39 -0
- package/src/lib/shape/shape.component.less +8 -0
- package/src/lib/shape/shape.component.spec.ts +25 -0
- package/src/lib/shape/shape.component.ts +207 -0
- package/src/lib/shape/shape.module.ts +14 -0
- package/src/lib/shared/component/video-player/video-player.component.html +2 -0
- package/src/lib/shared/component/video-player/video-player.component.less +15 -0
- package/src/lib/shared/component/video-player/video-player.component.spec.ts +25 -0
- package/src/lib/shared/component/video-player/video-player.component.ts +132 -0
- package/src/lib/shared/component/video-player/video-player.module.ts +11 -0
- package/src/lib/shared/model/scale.token.ts +8 -0
- package/src/lib/shared/service/common.service.ts +28 -0
- package/src/lib/shared/service/file-url.service.ts +8 -0
- package/src/lib/shared/service/gaode-map.service.ts +37 -0
- package/src/lib/shared/service/highcharts.service.ts +29 -0
- package/src/lib/shared/service/http.service.ts +15 -0
- package/src/lib/shared/util/base.util.ts +4 -0
- package/src/lib/shared/util/echarts.util.ts +11 -0
- package/src/lib/shared/util/style.util.ts +12 -0
- package/src/lib/shuffling-list/color.pipe.ts +21 -0
- package/src/lib/shuffling-list/shuffling-list.component.html +37 -0
- package/src/lib/shuffling-list/shuffling-list.component.less +55 -0
- package/src/lib/shuffling-list/shuffling-list.component.spec.ts +25 -0
- package/src/lib/shuffling-list/shuffling-list.component.ts +534 -0
- package/src/lib/shuffling-list/shuffling-list.module.ts +17 -0
- package/src/lib/table/table.component.html +123 -0
- package/src/lib/table/table.component.less +76 -0
- package/src/lib/table/table.component.spec.ts +25 -0
- package/src/lib/table/table.component.ts +608 -0
- package/src/lib/table/table.module.ts +33 -0
- package/src/lib/tabs/tab/tab.component.html +1 -0
- package/src/lib/tabs/tab/tab.component.less +5 -0
- package/src/lib/tabs/tab/tab.component.spec.ts +25 -0
- package/src/lib/tabs/tab/tab.component.ts +18 -0
- package/src/lib/tabs/tabs.component.html +13 -0
- package/src/lib/tabs/tabs.component.less +40 -0
- package/src/lib/tabs/tabs.component.spec.ts +25 -0
- package/src/lib/tabs/tabs.component.ts +68 -0
- package/src/lib/tabs/tabs.module.ts +17 -0
- package/src/lib/temporary-data/temporary-data.component.html +1 -0
- package/src/lib/temporary-data/temporary-data.component.less +4 -0
- package/src/lib/temporary-data/temporary-data.component.spec.ts +25 -0
- package/src/lib/temporary-data/temporary-data.component.ts +46 -0
- package/src/lib/temporary-data/temporary-data.module.ts +15 -0
- package/src/lib/text/text.component.css +0 -0
- package/src/lib/text/text.component.html +3 -0
- package/src/lib/text/text.component.spec.ts +25 -0
- package/src/lib/text/text.component.ts +22 -0
- package/src/lib/text/text.module.ts +14 -0
- package/src/lib/time-picker/time-picker.component.html +1 -0
- package/src/lib/time-picker/time-picker.component.less +14 -0
- package/src/lib/time-picker/time-picker.component.spec.ts +25 -0
- package/src/lib/time-picker/time-picker.component.ts +86 -0
- package/src/lib/time-picker/time-picker.module.ts +19 -0
- package/src/lib/timer/timer.component.html +7 -0
- package/src/lib/timer/timer.component.less +24 -0
- package/src/lib/timer/timer.component.spec.ts +25 -0
- package/src/lib/timer/timer.component.ts +74 -0
- package/src/lib/timer/timer.module.ts +15 -0
- package/src/lib/tree-control/tree-control.component.html +97 -0
- package/src/lib/tree-control/tree-control.component.less +111 -0
- package/src/lib/tree-control/tree-control.component.spec.ts +25 -0
- package/src/lib/tree-control/tree-control.component.ts +363 -0
- package/src/lib/tree-control/tree-control.module.ts +18 -0
- package/src/lib/tree-ring-chart/tree-ring-chart.component.html +7 -0
- package/src/lib/tree-ring-chart/tree-ring-chart.component.less +8 -0
- package/src/lib/tree-ring-chart/tree-ring-chart.component.spec.ts +25 -0
- package/src/lib/tree-ring-chart/tree-ring-chart.component.ts +192 -0
- package/src/lib/tree-ring-chart/tree-ring-chart.module.ts +15 -0
- package/src/lib/upload/upload.component.html +32 -0
- package/src/lib/upload/upload.component.less +14 -0
- package/src/lib/upload/upload.component.spec.ts +25 -0
- package/src/lib/upload/upload.component.ts +109 -0
- package/src/lib/upload/upload.module.ts +19 -0
- package/src/lib/video-grid/video-grid.component.html +33 -0
- package/src/lib/video-grid/video-grid.component.less +68 -0
- package/src/lib/video-grid/video-grid.component.spec.ts +25 -0
- package/src/lib/video-grid/video-grid.component.ts +115 -0
- package/src/lib/video-grid/video-grid.module.ts +17 -0
- package/src/lib/visual-map-chart/visual-map-chart.component.html +8 -0
- package/src/lib/visual-map-chart/visual-map-chart.component.less +21 -0
- package/src/lib/visual-map-chart/visual-map-chart.component.spec.ts +25 -0
- package/src/lib/visual-map-chart/visual-map-chart.component.ts +365 -0
- package/src/lib/visual-map-chart/visual-map-chart.module.ts +18 -0
- package/src/lib/vote/vote.component.html +6 -0
- package/src/lib/vote/vote.component.less +41 -0
- package/src/lib/vote/vote.component.spec.ts +25 -0
- package/src/lib/vote/vote.component.ts +71 -0
- package/src/lib/vote/vote.module.ts +16 -0
- package/src/lib/weather/weather.component.html +27 -0
- package/src/lib/weather/weather.component.less +67 -0
- package/src/lib/weather/weather.component.spec.ts +25 -0
- package/src/lib/weather/weather.component.ts +78 -0
- package/src/lib/weather/weather.module.ts +16 -0
- package/src/lib/wordart/wordart.component.html +2 -0
- package/src/lib/wordart/wordart.component.less +12 -0
- package/src/lib/wordart/wordart.component.spec.ts +25 -0
- package/src/lib/wordart/wordart.component.ts +56 -0
- package/src/lib/wordart/wordart.module.ts +14 -0
- package/src/lib/workbench-widget.module.ts +675 -0
- package/{public-api.d.ts → src/public-api.ts} +46 -35
- package/src/test.ts +22 -0
- package/tsconfig.lib.json +37 -0
- package/tsconfig.lib.prod.json +9 -0
- package/tsconfig.spec.json +17 -0
- package/tslint.json +17 -0
- package/bbj-screen-widget.d.ts +0 -119
- package/bbj-screen-widget.metadata.json +0 -1
- package/bundles/bbj-screen-widget-core.umd.js +0 -606
- package/bundles/bbj-screen-widget-core.umd.js.map +0 -1
- package/bundles/bbj-screen-widget-core.umd.min.js +0 -2
- package/bundles/bbj-screen-widget-core.umd.min.js.map +0 -1
- package/bundles/bbj-screen-widget.umd.js +0 -21735
- package/bundles/bbj-screen-widget.umd.js.map +0 -1
- package/bundles/bbj-screen-widget.umd.min.js +0 -2
- package/bundles/bbj-screen-widget.umd.min.js.map +0 -1
- package/core/bbj-screen-widget-core.d.ts +0 -4
- package/core/bbj-screen-widget-core.metadata.json +0 -1
- package/core/service/baidu-map.service.d.ts +0 -16
- package/esm2015/bbj-screen-widget.js +0 -120
- package/esm2015/core/bbj-screen-widget-core.js +0 -5
- package/esm2015/core/public_api.js +0 -2
- package/esm2015/core/service/baidu-map.service.js +0 -101
- package/esm2015/lib/announcement/announcement.component.js +0 -80
- package/esm2015/lib/announcement/announcement.module.js +0 -25
- package/esm2015/lib/audio/audio.component.js +0 -167
- package/esm2015/lib/audio/audio.module.js +0 -20
- package/esm2015/lib/background/background.component.js +0 -52
- package/esm2015/lib/background/background.module.js +0 -19
- package/esm2015/lib/bar-chart-three-d/bar-chart-three-d.component.js +0 -323
- package/esm2015/lib/bar-chart-three-d/bar-chart-three-d.module.js +0 -20
- package/esm2015/lib/basic-bar-chart/basic-bar-chart.component.js +0 -604
- package/esm2015/lib/basic-bar-chart/basic-bar-chart.module.js +0 -27
- package/esm2015/lib/basic-line-chart/basic-line-chart.component.js +0 -782
- package/esm2015/lib/basic-line-chart/basic-line-chart.module.js +0 -20
- package/esm2015/lib/basic-pie-chart/basic-pie-chart.component.js +0 -471
- package/esm2015/lib/basic-pie-chart/basic-pie-chart.module.js +0 -20
- package/esm2015/lib/basic-planimetric-map/basic-planimetric-map.component.js +0 -233
- package/esm2015/lib/basic-planimetric-map/basic-planimetric-map.module.js +0 -21
- package/esm2015/lib/breathing-bubble-layer/breathing-bubble-layer.component.js +0 -503
- package/esm2015/lib/breathing-bubble-layer/breathing-bubble-layer.module.js +0 -19
- package/esm2015/lib/bubble-chart/bubble-chart.component.js +0 -348
- package/esm2015/lib/bubble-chart/bubble-chart.module.js +0 -20
- package/esm2015/lib/bulletin-board/bulletin-board.component.js +0 -160
- package/esm2015/lib/bulletin-board/bulletin-board.module.js +0 -23
- package/esm2015/lib/button/button.component.js +0 -186
- package/esm2015/lib/button/button.module.js +0 -21
- package/esm2015/lib/calendar/background-events/background-events.component.js +0 -65
- package/esm2015/lib/calendar/calendar-events-child.js +0 -28
- package/esm2015/lib/calendar/calendar.component.js +0 -168
- package/esm2015/lib/calendar/calendar.module.js +0 -32
- package/esm2015/lib/calendar/calendar.util.js +0 -12
- package/esm2015/lib/calendar/events/events.component.js +0 -75
- package/esm2015/lib/checkbox/checkbox.component.js +0 -333
- package/esm2015/lib/checkbox/checkbox.module.js +0 -21
- package/esm2015/lib/cross-table/cross-table.component.js +0 -291
- package/esm2015/lib/cross-table/cross-table.module.js +0 -20
- package/esm2015/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.js +0 -747
- package/esm2015/lib/custom-baidu-map/baidu-polyline-layer/baidu-polyline-layer.component.js +0 -278
- package/esm2015/lib/custom-baidu-map/base-layer.js +0 -53
- package/esm2015/lib/custom-baidu-map/custom-baidu-map.component.js +0 -675
- package/esm2015/lib/custom-baidu-map/custom-baidu-map.module.js +0 -46
- package/esm2015/lib/custom-baidu-map/typhoon-area-layer/typhoon-area-layer.component.js +0 -116
- package/esm2015/lib/custom-baidu-map/wind-layer/wind-layer.component.js +0 -331
- package/esm2015/lib/date-picker/date-picker.component.js +0 -447
- package/esm2015/lib/date-picker/date-picker.module.js +0 -22
- package/esm2015/lib/funnel-chart/funnel-chart.component.js +0 -241
- package/esm2015/lib/funnel-chart/funnel-chart.module.js +0 -20
- package/esm2015/lib/gantt/gantt.component.js +0 -222
- package/esm2015/lib/gantt/gantt.module.js +0 -39
- package/esm2015/lib/gauge/gauge.component.js +0 -324
- package/esm2015/lib/gauge/gauge.module.js +0 -20
- package/esm2015/lib/gauge-progress/gauge-progress.component.js +0 -356
- package/esm2015/lib/gauge-progress/gauge.module.js +0 -22
- package/esm2015/lib/general-text/general-text.component.js +0 -144
- package/esm2015/lib/general-text/general-text.module.js +0 -20
- package/esm2015/lib/iconfont/icon.js +0 -199
- package/esm2015/lib/iconfont/iconfont.component.js +0 -56
- package/esm2015/lib/iconfont/iconfont.module.js +0 -20
- package/esm2015/lib/iframe/iframe.component.js +0 -46
- package/esm2015/lib/iframe/iframe.module.js +0 -20
- package/esm2015/lib/image/image.component.js +0 -98
- package/esm2015/lib/image/image.module.js +0 -19
- package/esm2015/lib/item-swiper/item-swiper.component.js +0 -343
- package/esm2015/lib/item-swiper/item-swiper.module.js +0 -22
- package/esm2015/lib/line-bar-chart/line-bar-chart.component.js +0 -398
- package/esm2015/lib/line-bar-chart/line-bar-chart.module.js +0 -20
- package/esm2015/lib/line-light-flow/line-light-flow.component.js +0 -241
- package/esm2015/lib/line-light-flow/line-light-flow.module.js +0 -24
- package/esm2015/lib/liquid-fill/liquid-fill.component.js +0 -158
- package/esm2015/lib/liquid-fill/liquid-fill.module.js +0 -20
- package/esm2015/lib/marquee/marquee.component.js +0 -110
- package/esm2015/lib/marquee/marquee.module.js +0 -19
- package/esm2015/lib/mip-anim/mip-anim.component.js +0 -26
- package/esm2015/lib/mip-anim/mip-anim.module.js +0 -19
- package/esm2015/lib/multi-title-gauge/multi-title-gauge.component.js +0 -277
- package/esm2015/lib/multi-title-gauge/multi-title-gauge.module.js +0 -22
- package/esm2015/lib/number-flop/number-flop.component.js +0 -124
- package/esm2015/lib/number-flop/number-flop.module.js +0 -19
- package/esm2015/lib/parent-container/parent-container.component.js +0 -21
- package/esm2015/lib/parent-container/parent-container.module.js +0 -19
- package/esm2015/lib/percent-pie-chart/percent-pie-chart.component.js +0 -248
- package/esm2015/lib/percent-pie-chart/percent-pie-chart.module.js +0 -20
- package/esm2015/lib/pie3d-chart/pie3d-chart.component.js +0 -303
- package/esm2015/lib/pie3d-chart/pie3d-chart.module.js +0 -19
- package/esm2015/lib/planimetric-map2d/fly-line-layer/fly-line-layer.component.js +0 -431
- package/esm2015/lib/planimetric-map2d/fly-line-layer/fly-line-layer.module.js +0 -19
- package/esm2015/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.component.js +0 -252
- package/esm2015/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.module.js +0 -19
- package/esm2015/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.component.js +0 -124
- package/esm2015/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.module.js +0 -19
- package/esm2015/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.component.js +0 -359
- package/esm2015/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.module.js +0 -21
- package/esm2015/lib/planimetric-map2d/planimetric-map2d.component.js +0 -753
- package/esm2015/lib/planimetric-map2d/planimetric-map2d.module.js +0 -34
- package/esm2015/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.component.js +0 -128
- package/esm2015/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.module.js +0 -19
- package/esm2015/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.component.js +0 -242
- package/esm2015/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.module.js +0 -19
- package/esm2015/lib/planimetric-map3d/planimetric-map3d.component.js +0 -265
- package/esm2015/lib/planimetric-map3d/planimetric-map3d.module.js +0 -22
- package/esm2015/lib/radar-chart/radar-chart.component.js +0 -255
- package/esm2015/lib/radar-chart/radar-chart.module.js +0 -20
- package/esm2015/lib/radio/radio.component.js +0 -148
- package/esm2015/lib/radio/radio.module.js +0 -21
- package/esm2015/lib/rate/rate.component.js +0 -57
- package/esm2015/lib/rate/rate.module.js +0 -23
- package/esm2015/lib/scatter3d/scatter3d.component.js +0 -166
- package/esm2015/lib/scatter3d/scatter3d.module.js +0 -20
- package/esm2015/lib/screen-widget.module.js +0 -536
- package/esm2015/lib/search/search.component.js +0 -130
- package/esm2015/lib/search/search.module.js +0 -29
- package/esm2015/lib/select/select.component.js +0 -359
- package/esm2015/lib/select/select.module.js +0 -22
- package/esm2015/lib/shape/shape.component.js +0 -248
- package/esm2015/lib/shape/shape.module.js +0 -19
- package/esm2015/lib/shared/component/video-player/video-player.component.js +0 -114
- package/esm2015/lib/shared/component/video-player/video-player.module.js +0 -14
- package/esm2015/lib/shared/service/common.service.js +0 -39
- package/esm2015/lib/shared/service/file-url.service.js +0 -12
- package/esm2015/lib/shared/service/gaode-map.service.js +0 -36
- package/esm2015/lib/shared/service/highcharts.service.js +0 -36
- package/esm2015/lib/shared/service/http.service.js +0 -20
- package/esm2015/lib/shared/util/base.util.js +0 -5
- package/esm2015/lib/shared/util/echarts.util.js +0 -12
- package/esm2015/lib/shared/util/style.util.js +0 -19
- package/esm2015/lib/shuffling-list/color.pipe.js +0 -23
- package/esm2015/lib/shuffling-list/shuffling-list.component.js +0 -601
- package/esm2015/lib/shuffling-list/shuffling-list.module.js +0 -22
- package/esm2015/lib/table/table.component.js +0 -657
- package/esm2015/lib/table/table.module.js +0 -38
- package/esm2015/lib/tabs/tab/tab.component.js +0 -27
- package/esm2015/lib/tabs/tabs.component.js +0 -85
- package/esm2015/lib/tabs/tabs.module.js +0 -22
- package/esm2015/lib/temporary-data/temporary-data.component.js +0 -49
- package/esm2015/lib/temporary-data/temporary-data.module.js +0 -20
- package/esm2015/lib/time-picker/time-picker.component.js +0 -112
- package/esm2015/lib/time-picker/time-picker.module.js +0 -21
- package/esm2015/lib/timer/timer.component.js +0 -108
- package/esm2015/lib/timer/timer.module.js +0 -20
- package/esm2015/lib/tree-control/tree-control.component.js +0 -435
- package/esm2015/lib/tree-control/tree-control.module.js +0 -24
- package/esm2015/lib/tree-ring-chart/tree-ring-chart.component.js +0 -215
- package/esm2015/lib/tree-ring-chart/tree-ring-chart.module.js +0 -20
- package/esm2015/lib/upload/upload.component.js +0 -127
- package/esm2015/lib/upload/upload.module.js +0 -22
- package/esm2015/lib/video-grid/video-grid.component.js +0 -140
- package/esm2015/lib/video-grid/video-grid.module.js +0 -22
- package/esm2015/lib/visual-map-chart/visual-map-chart.component.js +0 -395
- package/esm2015/lib/visual-map-chart/visual-map-chart.module.js +0 -20
- package/esm2015/lib/vote/vote.component.js +0 -100
- package/esm2015/lib/vote/vote.module.js +0 -21
- package/esm2015/lib/weather/weather.component.js +0 -92
- package/esm2015/lib/weather/weather.module.js +0 -21
- package/esm2015/lib/wordart/wordart.component.js +0 -84
- package/esm2015/lib/wordart/wordart.module.js +0 -19
- package/esm2015/lib/workbench-widget.module.js +0 -620
- package/esm2015/public-api.js +0 -40
- package/fesm2015/bbj-screen-widget-core.js +0 -107
- package/fesm2015/bbj-screen-widget-core.js.map +0 -1
- package/fesm2015/bbj-screen-widget.js +0 -20633
- package/fesm2015/bbj-screen-widget.js.map +0 -1
- package/lib/announcement/announcement.component.d.ts +0 -13
- package/lib/announcement/announcement.module.d.ts +0 -5
- package/lib/audio/audio.component.d.ts +0 -22
- package/lib/audio/audio.module.d.ts +0 -4
- package/lib/background/background.component.d.ts +0 -12
- package/lib/background/background.module.d.ts +0 -4
- package/lib/bar-chart-three-d/bar-chart-three-d.component.d.ts +0 -30
- package/lib/bar-chart-three-d/bar-chart-three-d.module.d.ts +0 -4
- package/lib/basic-bar-chart/basic-bar-chart.component.d.ts +0 -105
- package/lib/basic-bar-chart/basic-bar-chart.module.d.ts +0 -5
- package/lib/basic-line-chart/basic-line-chart.component.d.ts +0 -102
- package/lib/basic-line-chart/basic-line-chart.module.d.ts +0 -4
- package/lib/basic-pie-chart/basic-pie-chart.component.d.ts +0 -56
- package/lib/basic-pie-chart/basic-pie-chart.module.d.ts +0 -4
- package/lib/basic-planimetric-map/basic-planimetric-map.component.d.ts +0 -18
- package/lib/basic-planimetric-map/basic-planimetric-map.module.d.ts +0 -4
- package/lib/breathing-bubble-layer/breathing-bubble-layer.component.d.ts +0 -210
- package/lib/breathing-bubble-layer/breathing-bubble-layer.module.d.ts +0 -4
- package/lib/bubble-chart/bubble-chart.component.d.ts +0 -75
- package/lib/bubble-chart/bubble-chart.module.d.ts +0 -4
- package/lib/bulletin-board/bulletin-board.component.d.ts +0 -25
- package/lib/bulletin-board/bulletin-board.module.d.ts +0 -4
- package/lib/button/button.component.d.ts +0 -25
- package/lib/button/button.module.d.ts +0 -4
- package/lib/calendar/background-events/background-events.component.d.ts +0 -10
- package/lib/calendar/calendar-events-child.d.ts +0 -12
- package/lib/calendar/calendar.component.d.ts +0 -27
- package/lib/calendar/calendar.module.d.ts +0 -4
- package/lib/calendar/calendar.util.d.ts +0 -6
- package/lib/calendar/events/events.component.d.ts +0 -13
- package/lib/checkbox/checkbox.component.d.ts +0 -45
- package/lib/checkbox/checkbox.module.d.ts +0 -4
- package/lib/cross-table/cross-table.component.d.ts +0 -30
- package/lib/cross-table/cross-table.module.d.ts +0 -4
- package/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.d.ts +0 -72
- package/lib/custom-baidu-map/baidu-polyline-layer/baidu-polyline-layer.component.d.ts +0 -23
- package/lib/custom-baidu-map/base-layer.d.ts +0 -16
- package/lib/custom-baidu-map/custom-baidu-map.component.d.ts +0 -93
- package/lib/custom-baidu-map/custom-baidu-map.module.d.ts +0 -4
- package/lib/custom-baidu-map/typhoon-area-layer/typhoon-area-layer.component.d.ts +0 -16
- package/lib/custom-baidu-map/wind-layer/wind-layer.component.d.ts +0 -28
- package/lib/date-picker/date-picker.component.d.ts +0 -63
- package/lib/date-picker/date-picker.module.d.ts +0 -4
- package/lib/funnel-chart/funnel-chart.component.d.ts +0 -24
- package/lib/funnel-chart/funnel-chart.module.d.ts +0 -4
- package/lib/gantt/gantt.component.d.ts +0 -25
- package/lib/gantt/gantt.module.d.ts +0 -4
- package/lib/gauge/gauge.component.d.ts +0 -37
- package/lib/gauge/gauge.module.d.ts +0 -4
- package/lib/gauge-progress/gauge-progress.component.d.ts +0 -46
- package/lib/gauge-progress/gauge.module.d.ts +0 -5
- package/lib/general-text/general-text.component.d.ts +0 -21
- package/lib/general-text/general-text.module.d.ts +0 -4
- package/lib/iconfont/icon.d.ts +0 -1
- package/lib/iconfont/iconfont.component.d.ts +0 -11
- package/lib/iconfont/iconfont.module.d.ts +0 -4
- package/lib/iframe/iframe.component.d.ts +0 -10
- package/lib/iframe/iframe.module.d.ts +0 -4
- package/lib/image/image.component.d.ts +0 -21
- package/lib/image/image.module.d.ts +0 -4
- package/lib/item-swiper/item-swiper.component.d.ts +0 -41
- package/lib/item-swiper/item-swiper.module.d.ts +0 -5
- package/lib/line-bar-chart/line-bar-chart.component.d.ts +0 -63
- package/lib/line-bar-chart/line-bar-chart.module.d.ts +0 -4
- package/lib/line-light-flow/line-light-flow.component.d.ts +0 -26
- package/lib/line-light-flow/line-light-flow.module.d.ts +0 -4
- package/lib/liquid-fill/liquid-fill.component.d.ts +0 -18
- package/lib/liquid-fill/liquid-fill.module.d.ts +0 -4
- package/lib/marquee/marquee.component.d.ts +0 -20
- package/lib/marquee/marquee.module.d.ts +0 -4
- package/lib/mip-anim/mip-anim.component.d.ts +0 -6
- package/lib/mip-anim/mip-anim.module.d.ts +0 -4
- package/lib/multi-title-gauge/multi-title-gauge.component.d.ts +0 -26
- package/lib/multi-title-gauge/multi-title-gauge.module.d.ts +0 -4
- package/lib/number-flop/number-flop.component.d.ts +0 -22
- package/lib/number-flop/number-flop.module.d.ts +0 -4
- package/lib/parent-container/parent-container.component.d.ts +0 -9
- package/lib/parent-container/parent-container.module.d.ts +0 -4
- package/lib/percent-pie-chart/percent-pie-chart.component.d.ts +0 -24
- package/lib/percent-pie-chart/percent-pie-chart.module.d.ts +0 -4
- package/lib/pie3d-chart/pie3d-chart.component.d.ts +0 -30
- package/lib/pie3d-chart/pie3d-chart.module.d.ts +0 -4
- package/lib/planimetric-map2d/fly-line-layer/fly-line-layer.component.d.ts +0 -206
- package/lib/planimetric-map2d/fly-line-layer/fly-line-layer.module.d.ts +0 -4
- package/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.component.d.ts +0 -15
- package/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.module.d.ts +0 -4
- package/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.component.d.ts +0 -15
- package/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.module.d.ts +0 -4
- package/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.component.d.ts +0 -49
- package/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.module.d.ts +0 -4
- package/lib/planimetric-map2d/planimetric-map2d.component.d.ts +0 -49
- package/lib/planimetric-map2d/planimetric-map2d.module.d.ts +0 -4
- package/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.component.d.ts +0 -14
- package/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.module.d.ts +0 -4
- package/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.component.d.ts +0 -41
- package/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.module.d.ts +0 -4
- package/lib/planimetric-map3d/planimetric-map3d.component.d.ts +0 -29
- package/lib/planimetric-map3d/planimetric-map3d.module.d.ts +0 -4
- package/lib/radar-chart/radar-chart.component.d.ts +0 -24
- package/lib/radar-chart/radar-chart.module.d.ts +0 -4
- package/lib/radio/radio.component.d.ts +0 -21
- package/lib/radio/radio.module.d.ts +0 -4
- package/lib/rate/rate.component.d.ts +0 -13
- package/lib/rate/rate.module.d.ts +0 -4
- package/lib/scatter3d/scatter3d.component.d.ts +0 -25
- package/lib/scatter3d/scatter3d.module.d.ts +0 -4
- package/lib/screen-widget.module.d.ts +0 -4
- package/lib/search/search.component.d.ts +0 -21
- package/lib/search/search.module.d.ts +0 -6
- package/lib/select/select.component.d.ts +0 -37
- package/lib/select/select.module.d.ts +0 -4
- package/lib/shape/shape.component.d.ts +0 -50
- package/lib/shape/shape.module.d.ts +0 -4
- package/lib/shared/component/video-player/video-player.component.d.ts +0 -28
- package/lib/shared/component/video-player/video-player.module.d.ts +0 -2
- package/lib/shared/service/common.service.d.ts +0 -21
- package/lib/shared/service/file-url.service.d.ts +0 -3
- package/lib/shared/service/gaode-map.service.d.ts +0 -10
- package/lib/shared/service/highcharts.service.d.ts +0 -9
- package/lib/shared/service/http.service.d.ts +0 -7
- package/lib/shared/util/base.util.d.ts +0 -1
- package/lib/shared/util/echarts.util.d.ts +0 -1
- package/lib/shared/util/style.util.d.ts +0 -1
- package/lib/shuffling-list/color.pipe.d.ts +0 -4
- package/lib/shuffling-list/shuffling-list.component.d.ts +0 -76
- package/lib/shuffling-list/shuffling-list.module.d.ts +0 -4
- package/lib/table/table.component.d.ts +0 -65
- package/lib/table/table.module.d.ts +0 -4
- package/lib/tabs/tab/tab.component.d.ts +0 -7
- package/lib/tabs/tabs.component.d.ts +0 -13
- package/lib/tabs/tabs.module.d.ts +0 -4
- package/lib/temporary-data/temporary-data.component.d.ts +0 -13
- package/lib/temporary-data/temporary-data.module.d.ts +0 -4
- package/lib/time-picker/time-picker.component.d.ts +0 -17
- package/lib/time-picker/time-picker.module.d.ts +0 -4
- package/lib/timer/timer.component.d.ts +0 -21
- package/lib/timer/timer.module.d.ts +0 -4
- package/lib/tree-control/tree-control.component.d.ts +0 -62
- package/lib/tree-control/tree-control.module.d.ts +0 -4
- package/lib/tree-ring-chart/tree-ring-chart.component.d.ts +0 -24
- package/lib/tree-ring-chart/tree-ring-chart.module.d.ts +0 -4
- package/lib/upload/upload.component.d.ts +0 -21
- package/lib/upload/upload.module.d.ts +0 -4
- package/lib/video-grid/video-grid.component.d.ts +0 -23
- package/lib/video-grid/video-grid.module.d.ts +0 -4
- package/lib/visual-map-chart/visual-map-chart.component.d.ts +0 -49
- package/lib/visual-map-chart/visual-map-chart.module.d.ts +0 -4
- package/lib/vote/vote.component.d.ts +0 -15
- package/lib/vote/vote.module.d.ts +0 -4
- package/lib/weather/weather.component.d.ts +0 -26
- package/lib/weather/weather.module.d.ts +0 -4
- package/lib/wordart/wordart.component.d.ts +0 -14
- package/lib/wordart/wordart.module.d.ts +0 -4
- package/lib/workbench-widget.module.d.ts +0 -4
- /package/core/{public_api.d.ts → src/public_api.ts} +0 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { BasicPlanimetricMapComponent } from './basic-planimetric-map.component';
|
|
4
|
+
import { NgxEchartsModule } from 'ngx-echarts';
|
|
5
|
+
import { WidgetBaseModule, WidgetService } from 'bbj-widget-base';
|
|
6
|
+
import { BreathingBubbleLayerModule } from '../breathing-bubble-layer/breathing-bubble-layer.module';
|
|
7
|
+
|
|
8
|
+
@NgModule({
|
|
9
|
+
declarations: [BasicPlanimetricMapComponent],
|
|
10
|
+
imports: [CommonModule, NgxEchartsModule, WidgetBaseModule, BreathingBubbleLayerModule],
|
|
11
|
+
})
|
|
12
|
+
export class BasicPlanimetricMapModule {
|
|
13
|
+
constructor(widgetService: WidgetService) {
|
|
14
|
+
widgetService.register(BasicPlanimetricMapComponent);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
|
2
|
+
|
|
3
|
+
import { BreathingBubbleLayerComponent } from './breathing-bubble-layer.component';
|
|
4
|
+
|
|
5
|
+
describe('BreathingBubbleLayerComponent', () => {
|
|
6
|
+
let component: BreathingBubbleLayerComponent;
|
|
7
|
+
let fixture: ComponentFixture<BreathingBubbleLayerComponent>;
|
|
8
|
+
|
|
9
|
+
beforeEach(waitForAsync(() => {
|
|
10
|
+
TestBed.configureTestingModule({
|
|
11
|
+
declarations: [ BreathingBubbleLayerComponent ]
|
|
12
|
+
})
|
|
13
|
+
.compileComponents();
|
|
14
|
+
}));
|
|
15
|
+
|
|
16
|
+
beforeEach(() => {
|
|
17
|
+
fixture = TestBed.createComponent(BreathingBubbleLayerComponent);
|
|
18
|
+
component = fixture.componentInstance;
|
|
19
|
+
fixture.detectChanges();
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
it('should create', () => {
|
|
23
|
+
expect(component).toBeTruthy();
|
|
24
|
+
});
|
|
25
|
+
});
|
|
@@ -0,0 +1,487 @@
|
|
|
1
|
+
import { Component, OnInit, Inject, forwardRef, OnChanges, SimpleChanges, OnDestroy } from '@angular/core';
|
|
2
|
+
import { Widget, Data, Property } from 'bbj-widget-base';
|
|
3
|
+
import { ParentContainerComponent } from '../parent-container/parent-container.component';
|
|
4
|
+
|
|
5
|
+
@Component({
|
|
6
|
+
selector: 'sc-breathing-bubble-layer',
|
|
7
|
+
templateUrl: './breathing-bubble-layer.component.html',
|
|
8
|
+
styleUrls: ['./breathing-bubble-layer.component.css'],
|
|
9
|
+
})
|
|
10
|
+
@Widget('呼吸气泡层', {
|
|
11
|
+
group: 'component',
|
|
12
|
+
image: '',
|
|
13
|
+
icon: '',
|
|
14
|
+
hidden: true,
|
|
15
|
+
})
|
|
16
|
+
export class BreathingBubbleLayerComponent implements OnInit, OnChanges, OnDestroy {
|
|
17
|
+
// @Property('', {
|
|
18
|
+
// ui: {
|
|
19
|
+
// widget: 'myBubbleType',
|
|
20
|
+
// spanLabel: 0,
|
|
21
|
+
// spanControl: 24,
|
|
22
|
+
// title: '气泡类型',
|
|
23
|
+
// example: ['#D0021B', '#F5A623', '#F8E71C', '#50E3C2', '#3285FF', '#B45FFF', '#9B9B9B', '#333333'],
|
|
24
|
+
// },
|
|
25
|
+
// })
|
|
26
|
+
@Property('气泡类型', {
|
|
27
|
+
type: 'array',
|
|
28
|
+
items: {
|
|
29
|
+
type: 'object',
|
|
30
|
+
properties: {
|
|
31
|
+
key: { type: 'string' },
|
|
32
|
+
color: {
|
|
33
|
+
type: 'string',
|
|
34
|
+
title: '颜色',
|
|
35
|
+
ui: { widget: 'myColor' },
|
|
36
|
+
},
|
|
37
|
+
size: {
|
|
38
|
+
type: 'string',
|
|
39
|
+
title: '大小',
|
|
40
|
+
ui: { widget: 'textarea', autosize: { minRows: 4 } },
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
ui: { spanLabelFixed: 50 },
|
|
44
|
+
},
|
|
45
|
+
ui: { grid: { arraySpan: 24 }, spanControl: 24 },
|
|
46
|
+
})
|
|
47
|
+
bubbleType = [{ key: 1, color: '#ddb926', size: 'function (val) {return val[2]*0.1;}' }];
|
|
48
|
+
|
|
49
|
+
@Data({
|
|
50
|
+
properties: {
|
|
51
|
+
name: { type: 'string', title: '地名' },
|
|
52
|
+
value: { type: 'number', title: '值' },
|
|
53
|
+
series: { type: 'string', title: '系列' },
|
|
54
|
+
},
|
|
55
|
+
})
|
|
56
|
+
data: any[] = [
|
|
57
|
+
{ name: '海门', value: 9, series: 1 },
|
|
58
|
+
{ name: '鄂尔多斯', value: 12, series: 1 },
|
|
59
|
+
{ name: '招远', value: 12, series: 1 },
|
|
60
|
+
{ name: '舟山', value: 12, series: 1 },
|
|
61
|
+
{ name: '齐齐哈尔', value: 14, series: 1 },
|
|
62
|
+
{ name: '盐城', value: 15, series: 1 },
|
|
63
|
+
{ name: '赤峰', value: 16, series: 1 },
|
|
64
|
+
{ name: '青岛', value: 18, series: 1 },
|
|
65
|
+
{ name: '乳山', value: 18, series: 1 },
|
|
66
|
+
{ name: '金昌', value: 19, series: 1 },
|
|
67
|
+
{ name: '泉州', value: 21, series: 1 },
|
|
68
|
+
{ name: '莱西', value: 21, series: 1 },
|
|
69
|
+
{ name: '日照', value: 21, series: 1 },
|
|
70
|
+
{ name: '胶南', value: 22, series: 1 },
|
|
71
|
+
{ name: '南通', value: 23, series: 1 },
|
|
72
|
+
{ name: '拉萨', value: 24, series: 2 },
|
|
73
|
+
{ name: '云浮', value: 24, series: 2 },
|
|
74
|
+
{ name: '梅州', value: 25, series: 2 },
|
|
75
|
+
{ name: '文登', value: 25, series: 2 },
|
|
76
|
+
{ name: '上海', value: 25, series: 2 },
|
|
77
|
+
{ name: '攀枝花', value: 25, series: 2 },
|
|
78
|
+
{ name: '威海', value: 25, series: 2 },
|
|
79
|
+
{ name: '承德', value: 25, series: 2 },
|
|
80
|
+
{ name: '厦门', value: 26, series: 2 },
|
|
81
|
+
{ name: '汕尾', value: 26, series: 2 },
|
|
82
|
+
{ name: '潮州', value: 26, series: 2 },
|
|
83
|
+
{ name: '丹东', value: 27, series: 2 },
|
|
84
|
+
{ name: '太仓', value: 27, series: 2 },
|
|
85
|
+
{ name: '曲靖', value: 27, series: 2 },
|
|
86
|
+
{ name: '烟台', value: 28, series: 2 },
|
|
87
|
+
{ name: '福州', value: 29, series: 2 },
|
|
88
|
+
{ name: '瓦房店', value: 30, series: 2 },
|
|
89
|
+
{ name: '即墨', value: 30, series: 2 },
|
|
90
|
+
{ name: '抚顺', value: 31, series: 2 },
|
|
91
|
+
{ name: '玉溪', value: 31, series: 2 },
|
|
92
|
+
{ name: '张家口', value: 31, series: 2 },
|
|
93
|
+
{ name: '阳泉', value: 31, series: 2 },
|
|
94
|
+
{ name: '莱州', value: 32, series: 2 },
|
|
95
|
+
{ name: '湖州', value: 32, series: 2 },
|
|
96
|
+
{ name: '汕头', value: 32, series: 2 },
|
|
97
|
+
{ name: '昆山', value: 33, series: 2 },
|
|
98
|
+
{ name: '宁波', value: 33, series: 2 },
|
|
99
|
+
{ name: '湛江', value: 33, series: 2 },
|
|
100
|
+
{ name: '揭阳', value: 34, series: 1 },
|
|
101
|
+
{ name: '荣成', value: 34, series: 1 },
|
|
102
|
+
{ name: '连云港', value: 35, series: 1 },
|
|
103
|
+
{ name: '葫芦岛', value: 35, series: 1 },
|
|
104
|
+
{ name: '常熟', value: 36, series: 1 },
|
|
105
|
+
{ name: '东莞', value: 36, series: 1 },
|
|
106
|
+
{ name: '河源', value: 36, series: 1 },
|
|
107
|
+
{ name: '淮安', value: 36, series: 1 },
|
|
108
|
+
{ name: '泰州', value: 36, series: 1 },
|
|
109
|
+
{ name: '南宁', value: 37, series: 1 },
|
|
110
|
+
{ name: '营口', value: 37, series: 1 },
|
|
111
|
+
{ name: '惠州', value: 37, series: 1 },
|
|
112
|
+
{ name: '江阴', value: 37, series: 1 },
|
|
113
|
+
{ name: '蓬莱', value: 37, series: 1 },
|
|
114
|
+
{ name: '韶关', value: 38, series: 1 },
|
|
115
|
+
{ name: '嘉峪关', value: 38, series: 1 },
|
|
116
|
+
{ name: '广州', value: 38, series: 1 },
|
|
117
|
+
{ name: '延安', value: 38, series: 1 },
|
|
118
|
+
{ name: '太原', value: 39, series: 1 },
|
|
119
|
+
{ name: '清远', value: 39, series: 1 },
|
|
120
|
+
{ name: '中山', value: 39, series: 1 },
|
|
121
|
+
{ name: '昆明', value: 39, series: 1 },
|
|
122
|
+
{ name: '寿光', value: 40, series: 1 },
|
|
123
|
+
{ name: '盘锦', value: 40, series: 1 },
|
|
124
|
+
{ name: '长治', value: 41, series: 1 },
|
|
125
|
+
{ name: '深圳', value: 41, series: 1 },
|
|
126
|
+
{ name: '珠海', value: 42, series: 1 },
|
|
127
|
+
{ name: '宿迁', value: 43, series: 1 },
|
|
128
|
+
{ name: '咸阳', value: 43, series: 1 },
|
|
129
|
+
{ name: '铜川', value: 44, series: 1 },
|
|
130
|
+
{ name: '平度', value: 44, series: 1 },
|
|
131
|
+
{ name: '佛山', value: 44, series: 1 },
|
|
132
|
+
{ name: '海口', value: 44, series: 1 },
|
|
133
|
+
{ name: '江门', value: 45, series: 1 },
|
|
134
|
+
{ name: '章丘', value: 45, series: 1 },
|
|
135
|
+
{ name: '肇庆', value: 46, series: 1 },
|
|
136
|
+
{ name: '大连', value: 47, series: 1 },
|
|
137
|
+
{ name: '临汾', value: 47, series: 1 },
|
|
138
|
+
{ name: '吴江', value: 47, series: 1 },
|
|
139
|
+
{ name: '石嘴山', value: 49, series: 1 },
|
|
140
|
+
{ name: '沈阳', value: 50, series: 1 },
|
|
141
|
+
{ name: '苏州', value: 50, series: 1 },
|
|
142
|
+
{ name: '茂名', value: 50, series: 1 },
|
|
143
|
+
{ name: '嘉兴', value: 51, series: 1 },
|
|
144
|
+
{ name: '长春', value: 51, series: 1 },
|
|
145
|
+
{ name: '胶州', value: 52, series: 1 },
|
|
146
|
+
{ name: '银川', value: 52, series: 1 },
|
|
147
|
+
{ name: '张家港', value: 52, series: 1 },
|
|
148
|
+
{ name: '三门峡', value: 53, series: 1 },
|
|
149
|
+
{ name: '锦州', value: 54, series: 1 },
|
|
150
|
+
{ name: '南昌', value: 54, series: 1 },
|
|
151
|
+
{ name: '柳州', value: 54, series: 1 },
|
|
152
|
+
{ name: '三亚', value: 54, series: 1 },
|
|
153
|
+
{ name: '自贡', value: 56, series: 1 },
|
|
154
|
+
{ name: '吉林', value: 56, series: 1 },
|
|
155
|
+
{ name: '阳江', value: 57, series: 1 },
|
|
156
|
+
{ name: '泸州', value: 57, series: 1 },
|
|
157
|
+
{ name: '西宁', value: 57, series: 1 },
|
|
158
|
+
{ name: '宜宾', value: 58, series: 1 },
|
|
159
|
+
{ name: '呼和浩特', value: 58, series: 1 },
|
|
160
|
+
{ name: '成都', value: 58, series: 1 },
|
|
161
|
+
{ name: '大同', value: 58, series: 1 },
|
|
162
|
+
{ name: '镇江', value: 59, series: 1 },
|
|
163
|
+
{ name: '桂林', value: 59, series: 1 },
|
|
164
|
+
{ name: '张家界', value: 59, series: 1 },
|
|
165
|
+
{ name: '宜兴', value: 59, series: 1 },
|
|
166
|
+
{ name: '北海', value: 60, series: 1 },
|
|
167
|
+
{ name: '西安', value: 61, series: 1 },
|
|
168
|
+
{ name: '金坛', value: 62, series: 1 },
|
|
169
|
+
{ name: '东营', value: 62, series: 1 },
|
|
170
|
+
{ name: '牡丹江', value: 63, series: 1 },
|
|
171
|
+
{ name: '遵义', value: 63, series: 1 },
|
|
172
|
+
{ name: '绍兴', value: 63, series: 1 },
|
|
173
|
+
{ name: '扬州', value: 64, series: 1 },
|
|
174
|
+
{ name: '常州', value: 64, series: 1 },
|
|
175
|
+
{ name: '潍坊', value: 65, series: 1 },
|
|
176
|
+
{ name: '重庆', value: 66, series: 1 },
|
|
177
|
+
{ name: '台州', value: 67, series: 1 },
|
|
178
|
+
{ name: '南京', value: 67, series: 1 },
|
|
179
|
+
{ name: '滨州', value: 70, series: 1 },
|
|
180
|
+
{ name: '贵阳', value: 71, series: 1 },
|
|
181
|
+
{ name: '无锡', value: 71, series: 1 },
|
|
182
|
+
{ name: '本溪', value: 71, series: 1 },
|
|
183
|
+
{ name: '克拉玛依', value: 72, series: 1 },
|
|
184
|
+
{ name: '渭南', value: 72, series: 1 },
|
|
185
|
+
{ name: '马鞍山', value: 72, series: 1 },
|
|
186
|
+
{ name: '宝鸡', value: 72, series: 1 },
|
|
187
|
+
{ name: '焦作', value: 75, series: 1 },
|
|
188
|
+
{ name: '句容', value: 75, series: 1 },
|
|
189
|
+
{ name: '北京', value: 79, series: 1 },
|
|
190
|
+
{ name: '徐州', value: 79, series: 1 },
|
|
191
|
+
{ name: '衡水', value: 80, series: 1 },
|
|
192
|
+
{ name: '包头', value: 80, series: 1 },
|
|
193
|
+
{ name: '绵阳', value: 80, series: 1 },
|
|
194
|
+
{ name: '乌鲁木齐', value: 84, series: 1 },
|
|
195
|
+
{ name: '枣庄', value: 84, series: 1 },
|
|
196
|
+
{ name: '杭州', value: 84, series: 1 },
|
|
197
|
+
{ name: '淄博', value: 85, series: 1 },
|
|
198
|
+
{ name: '鞍山', value: 86, series: 1 },
|
|
199
|
+
{ name: '溧阳', value: 86, series: 1 },
|
|
200
|
+
{ name: '库尔勒', value: 86, series: 1 },
|
|
201
|
+
{ name: '安阳', value: 90, series: 1 },
|
|
202
|
+
{ name: '开封', value: 90, series: 1 },
|
|
203
|
+
{ name: '济南', value: 92, series: 1 },
|
|
204
|
+
{ name: '德阳', value: 93, series: 1 },
|
|
205
|
+
{ name: '温州', value: 95, series: 1 },
|
|
206
|
+
{ name: '九江', value: 96, series: 1 },
|
|
207
|
+
{ name: '邯郸', value: 98, series: 1 },
|
|
208
|
+
{ name: '临安', value: 99, series: 1 },
|
|
209
|
+
{ name: '兰州', value: 99, series: 1 },
|
|
210
|
+
{ name: '沧州', value: 100, series: 1 },
|
|
211
|
+
{ name: '临沂', value: 103, series: 1 },
|
|
212
|
+
{ name: '南充', value: 104, series: 1 },
|
|
213
|
+
{ name: '天津', value: 105, series: 1 },
|
|
214
|
+
{ name: '富阳', value: 106, series: 1 },
|
|
215
|
+
{ name: '泰安', value: 112, series: 1 },
|
|
216
|
+
{ name: '诸暨', value: 112, series: 1 },
|
|
217
|
+
{ name: '郑州', value: 113, series: 1 },
|
|
218
|
+
{ name: '哈尔滨', value: 114, series: 1 },
|
|
219
|
+
{ name: '聊城', value: 116, series: 1 },
|
|
220
|
+
{ name: '芜湖', value: 117, series: 1 },
|
|
221
|
+
{ name: '唐山', value: 119, series: 1 },
|
|
222
|
+
{ name: '平顶山', value: 119, series: 1 },
|
|
223
|
+
{ name: '邢台', value: 11, series: 19 },
|
|
224
|
+
{ name: '德州', value: 120, series: 1 },
|
|
225
|
+
{ name: '济宁', value: 120, series: 1 },
|
|
226
|
+
{ name: '荆州', value: 127, series: 1 },
|
|
227
|
+
{ name: '宜昌', value: 130, series: 1 },
|
|
228
|
+
{ name: '义乌', value: 132, series: 1 },
|
|
229
|
+
{ name: '丽水', value: 133, series: 1 },
|
|
230
|
+
{ name: '洛阳', value: 134, series: 1 },
|
|
231
|
+
{ name: '秦皇岛', value: 136, series: 1 },
|
|
232
|
+
{ name: '株洲', value: 143, series: 1 },
|
|
233
|
+
{ name: '石家庄', value: 147, series: 1 },
|
|
234
|
+
{ name: '莱芜', value: 148, series: 1 },
|
|
235
|
+
{ name: '常德', value: 152, series: 1 },
|
|
236
|
+
{ name: '保定', value: 153, series: 1 },
|
|
237
|
+
{ name: '湘潭', value: 154, series: 1 },
|
|
238
|
+
{ name: '金华', value: 157, series: 1 },
|
|
239
|
+
{ name: '岳阳', value: 169, series: 1 },
|
|
240
|
+
{ name: '长沙', value: 175, series: 1 },
|
|
241
|
+
{ name: '衢州', value: 177, series: 1 },
|
|
242
|
+
{ name: '廊坊', value: 193, series: 1 },
|
|
243
|
+
{ name: '菏泽', value: 194, series: 1 },
|
|
244
|
+
{ name: '合肥', value: 229, series: 1 },
|
|
245
|
+
{ name: '武汉', value: 273, series: 1 },
|
|
246
|
+
{ name: '大庆', value: 279, series: 1 },
|
|
247
|
+
];
|
|
248
|
+
geoCoordMap = {
|
|
249
|
+
海门: [121.15, 31.89],
|
|
250
|
+
鄂尔多斯: [109.781327, 39.608266],
|
|
251
|
+
招远: [120.38, 37.35],
|
|
252
|
+
舟山: [122.207216, 29.985295],
|
|
253
|
+
齐齐哈尔: [123.97, 47.33],
|
|
254
|
+
盐城: [120.13, 33.38],
|
|
255
|
+
赤峰: [118.87, 42.28],
|
|
256
|
+
青岛: [120.33, 36.07],
|
|
257
|
+
乳山: [121.52, 36.89],
|
|
258
|
+
金昌: [102.188043, 38.520089],
|
|
259
|
+
泉州: [118.58, 24.93],
|
|
260
|
+
莱西: [120.53, 36.86],
|
|
261
|
+
日照: [119.46, 35.42],
|
|
262
|
+
胶南: [119.97, 35.88],
|
|
263
|
+
南通: [121.05, 32.08],
|
|
264
|
+
拉萨: [91.11, 29.97],
|
|
265
|
+
云浮: [112.02, 22.93],
|
|
266
|
+
梅州: [116.1, 24.55],
|
|
267
|
+
文登: [122.05, 37.2],
|
|
268
|
+
上海: [121.48, 31.22],
|
|
269
|
+
攀枝花: [101.718637, 26.582347],
|
|
270
|
+
威海: [122.1, 37.5],
|
|
271
|
+
承德: [117.93, 40.97],
|
|
272
|
+
厦门: [118.1, 24.46],
|
|
273
|
+
汕尾: [115.375279, 22.786211],
|
|
274
|
+
潮州: [116.63, 23.68],
|
|
275
|
+
丹东: [124.37, 40.13],
|
|
276
|
+
太仓: [121.1, 31.45],
|
|
277
|
+
曲靖: [103.79, 25.51],
|
|
278
|
+
烟台: [121.39, 37.52],
|
|
279
|
+
福州: [119.3, 26.08],
|
|
280
|
+
瓦房店: [121.979603, 39.627114],
|
|
281
|
+
即墨: [120.45, 36.38],
|
|
282
|
+
抚顺: [123.97, 41.97],
|
|
283
|
+
玉溪: [102.52, 24.35],
|
|
284
|
+
张家口: [114.87, 40.82],
|
|
285
|
+
阳泉: [113.57, 37.85],
|
|
286
|
+
莱州: [119.942327, 37.177017],
|
|
287
|
+
湖州: [120.1, 30.86],
|
|
288
|
+
汕头: [116.69, 23.39],
|
|
289
|
+
昆山: [120.95, 31.39],
|
|
290
|
+
宁波: [121.56, 29.86],
|
|
291
|
+
湛江: [110.359377, 21.270708],
|
|
292
|
+
揭阳: [116.35, 23.55],
|
|
293
|
+
荣成: [122.41, 37.16],
|
|
294
|
+
连云港: [119.16, 34.59],
|
|
295
|
+
葫芦岛: [120.836932, 40.711052],
|
|
296
|
+
常熟: [120.74, 31.64],
|
|
297
|
+
东莞: [113.75, 23.04],
|
|
298
|
+
河源: [114.68, 23.73],
|
|
299
|
+
淮安: [119.15, 33.5],
|
|
300
|
+
泰州: [119.9, 32.49],
|
|
301
|
+
南宁: [108.33, 22.84],
|
|
302
|
+
营口: [122.18, 40.65],
|
|
303
|
+
惠州: [114.4, 23.09],
|
|
304
|
+
江阴: [120.26, 31.91],
|
|
305
|
+
蓬莱: [120.75, 37.8],
|
|
306
|
+
韶关: [113.62, 24.84],
|
|
307
|
+
嘉峪关: [98.289152, 39.77313],
|
|
308
|
+
广州: [113.23, 23.16],
|
|
309
|
+
延安: [109.47, 36.6],
|
|
310
|
+
太原: [112.53, 37.87],
|
|
311
|
+
清远: [113.01, 23.7],
|
|
312
|
+
中山: [113.38, 22.52],
|
|
313
|
+
昆明: [102.73, 25.04],
|
|
314
|
+
寿光: [118.73, 36.86],
|
|
315
|
+
盘锦: [122.070714, 41.119997],
|
|
316
|
+
长治: [113.08, 36.18],
|
|
317
|
+
深圳: [114.07, 22.62],
|
|
318
|
+
珠海: [113.52, 22.3],
|
|
319
|
+
宿迁: [118.3, 33.96],
|
|
320
|
+
咸阳: [108.72, 34.36],
|
|
321
|
+
铜川: [109.11, 35.09],
|
|
322
|
+
平度: [119.97, 36.77],
|
|
323
|
+
佛山: [113.11, 23.05],
|
|
324
|
+
海口: [110.35, 20.02],
|
|
325
|
+
江门: [113.06, 22.61],
|
|
326
|
+
章丘: [117.53, 36.72],
|
|
327
|
+
肇庆: [112.44, 23.05],
|
|
328
|
+
大连: [121.62, 38.92],
|
|
329
|
+
临汾: [111.5, 36.08],
|
|
330
|
+
吴江: [120.63, 31.16],
|
|
331
|
+
石嘴山: [106.39, 39.04],
|
|
332
|
+
沈阳: [123.38, 41.8],
|
|
333
|
+
苏州: [120.62, 31.32],
|
|
334
|
+
茂名: [110.88, 21.68],
|
|
335
|
+
嘉兴: [120.76, 30.77],
|
|
336
|
+
长春: [125.35, 43.88],
|
|
337
|
+
胶州: [120.03336, 36.264622],
|
|
338
|
+
银川: [106.27, 38.47],
|
|
339
|
+
张家港: [120.555821, 31.875428],
|
|
340
|
+
三门峡: [111.19, 34.76],
|
|
341
|
+
锦州: [121.15, 41.13],
|
|
342
|
+
南昌: [115.89, 28.68],
|
|
343
|
+
柳州: [109.4, 24.33],
|
|
344
|
+
三亚: [109.511909, 18.252847],
|
|
345
|
+
自贡: [104.778442, 29.33903],
|
|
346
|
+
吉林: [126.57, 43.87],
|
|
347
|
+
阳江: [111.95, 21.85],
|
|
348
|
+
泸州: [105.39, 28.91],
|
|
349
|
+
西宁: [101.74, 36.56],
|
|
350
|
+
宜宾: [104.56, 29.77],
|
|
351
|
+
呼和浩特: [111.65, 40.82],
|
|
352
|
+
成都: [104.06, 30.67],
|
|
353
|
+
大同: [113.3, 40.12],
|
|
354
|
+
镇江: [119.44, 32.2],
|
|
355
|
+
桂林: [110.28, 25.29],
|
|
356
|
+
张家界: [110.479191, 29.117096],
|
|
357
|
+
宜兴: [119.82, 31.36],
|
|
358
|
+
北海: [109.12, 21.49],
|
|
359
|
+
西安: [108.95, 34.27],
|
|
360
|
+
金坛: [119.56, 31.74],
|
|
361
|
+
东营: [118.49, 37.46],
|
|
362
|
+
牡丹江: [129.58, 44.6],
|
|
363
|
+
遵义: [106.9, 27.7],
|
|
364
|
+
绍兴: [120.58, 30.01],
|
|
365
|
+
扬州: [119.42, 32.39],
|
|
366
|
+
常州: [119.95, 31.79],
|
|
367
|
+
潍坊: [119.1, 36.62],
|
|
368
|
+
重庆: [106.54, 29.59],
|
|
369
|
+
台州: [121.420757, 28.656386],
|
|
370
|
+
南京: [118.78, 32.04],
|
|
371
|
+
滨州: [118.03, 37.36],
|
|
372
|
+
贵阳: [106.71, 26.57],
|
|
373
|
+
无锡: [120.29, 31.59],
|
|
374
|
+
本溪: [123.73, 41.3],
|
|
375
|
+
克拉玛依: [84.77, 45.59],
|
|
376
|
+
渭南: [109.5, 34.52],
|
|
377
|
+
马鞍山: [118.48, 31.56],
|
|
378
|
+
宝鸡: [107.15, 34.38],
|
|
379
|
+
焦作: [113.21, 35.24],
|
|
380
|
+
句容: [119.16, 31.95],
|
|
381
|
+
北京: [116.46, 39.92],
|
|
382
|
+
徐州: [117.2, 34.26],
|
|
383
|
+
衡水: [115.72, 37.72],
|
|
384
|
+
包头: [110, 40.58],
|
|
385
|
+
绵阳: [104.73, 31.48],
|
|
386
|
+
乌鲁木齐: [87.68, 43.77],
|
|
387
|
+
枣庄: [117.57, 34.86],
|
|
388
|
+
杭州: [120.19, 30.26],
|
|
389
|
+
淄博: [118.05, 36.78],
|
|
390
|
+
鞍山: [122.85, 41.12],
|
|
391
|
+
溧阳: [119.48, 31.43],
|
|
392
|
+
库尔勒: [86.06, 41.68],
|
|
393
|
+
安阳: [114.35, 36.1],
|
|
394
|
+
开封: [114.35, 34.79],
|
|
395
|
+
济南: [117, 36.65],
|
|
396
|
+
德阳: [104.37, 31.13],
|
|
397
|
+
温州: [120.65, 28.01],
|
|
398
|
+
九江: [115.97, 29.71],
|
|
399
|
+
邯郸: [114.47, 36.6],
|
|
400
|
+
临安: [119.72, 30.23],
|
|
401
|
+
兰州: [103.73, 36.03],
|
|
402
|
+
沧州: [116.83, 38.33],
|
|
403
|
+
临沂: [118.35, 35.05],
|
|
404
|
+
南充: [106.110698, 30.837793],
|
|
405
|
+
天津: [117.2, 39.13],
|
|
406
|
+
富阳: [119.95, 30.07],
|
|
407
|
+
泰安: [117.13, 36.18],
|
|
408
|
+
诸暨: [120.23, 29.71],
|
|
409
|
+
郑州: [113.65, 34.76],
|
|
410
|
+
哈尔滨: [126.63, 45.75],
|
|
411
|
+
聊城: [115.97, 36.45],
|
|
412
|
+
芜湖: [118.38, 31.33],
|
|
413
|
+
唐山: [118.02, 39.63],
|
|
414
|
+
平顶山: [113.29, 33.75],
|
|
415
|
+
邢台: [114.48, 37.05],
|
|
416
|
+
德州: [116.29, 37.45],
|
|
417
|
+
济宁: [116.59, 35.38],
|
|
418
|
+
荆州: [112.239741, 30.335165],
|
|
419
|
+
宜昌: [111.3, 30.7],
|
|
420
|
+
义乌: [120.06, 29.32],
|
|
421
|
+
丽水: [119.92, 28.45],
|
|
422
|
+
洛阳: [112.44, 34.7],
|
|
423
|
+
秦皇岛: [119.57, 39.95],
|
|
424
|
+
株洲: [113.16, 27.83],
|
|
425
|
+
石家庄: [114.48, 38.03],
|
|
426
|
+
莱芜: [117.67, 36.19],
|
|
427
|
+
常德: [111.69, 29.05],
|
|
428
|
+
保定: [115.48, 38.85],
|
|
429
|
+
湘潭: [112.91, 27.87],
|
|
430
|
+
金华: [119.64, 29.12],
|
|
431
|
+
岳阳: [113.09, 29.37],
|
|
432
|
+
长沙: [113, 28.21],
|
|
433
|
+
衢州: [118.88, 28.97],
|
|
434
|
+
廊坊: [116.7, 39.53],
|
|
435
|
+
菏泽: [115.480656, 35.23375],
|
|
436
|
+
合肥: [117.27, 31.86],
|
|
437
|
+
武汉: [114.31, 30.52],
|
|
438
|
+
大庆: [125.03, 46.58],
|
|
439
|
+
};
|
|
440
|
+
id: string;
|
|
441
|
+
constructor(@Inject(forwardRef(() => ParentContainerComponent)) private parent: ParentContainerComponent) {}
|
|
442
|
+
ngOnChanges(changes: SimpleChanges): void {
|
|
443
|
+
const item = [];
|
|
444
|
+
this.bubbleType.forEach((series) => {
|
|
445
|
+
item.push({
|
|
446
|
+
coordinateSystem: 'bmap',
|
|
447
|
+
data: this.convertData(this.data, series.key),
|
|
448
|
+
itemStyle: { normal: { color: series.color } },
|
|
449
|
+
label: {
|
|
450
|
+
formatter: '{b}',
|
|
451
|
+
position: 'right',
|
|
452
|
+
show: false,
|
|
453
|
+
},
|
|
454
|
+
symbolSize: this.getItem(series.size),
|
|
455
|
+
name: series.key,
|
|
456
|
+
type: 'scatter',
|
|
457
|
+
});
|
|
458
|
+
});
|
|
459
|
+
this.parent.childInit({
|
|
460
|
+
id: this.id,
|
|
461
|
+
item,
|
|
462
|
+
});
|
|
463
|
+
}
|
|
464
|
+
ngOnInit() {}
|
|
465
|
+
ngOnDestroy(): void {
|
|
466
|
+
this.parent.deleteChild(this.id);
|
|
467
|
+
}
|
|
468
|
+
getItem(v) {
|
|
469
|
+
if (v && v.indexOf && v.indexOf('function') > -1) {
|
|
470
|
+
return eval('(' + v + ')');
|
|
471
|
+
}
|
|
472
|
+
}
|
|
473
|
+
convertData(data, key) {
|
|
474
|
+
let res = [];
|
|
475
|
+
for (let i = 0; i < data.length; i++) {
|
|
476
|
+
let geoCoord = this.geoCoordMap[data[i].name];
|
|
477
|
+
if (geoCoord && data[i].series == key) {
|
|
478
|
+
res.push({
|
|
479
|
+
name: data[i].name,
|
|
480
|
+
extraData: { lat: geoCoord[1], lng: geoCoord[0], s: data[i].series, value: data[i].value },
|
|
481
|
+
value: geoCoord.concat(data[i].value),
|
|
482
|
+
});
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
return res;
|
|
486
|
+
}
|
|
487
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { BreathingBubbleLayerComponent } from './breathing-bubble-layer.component';
|
|
4
|
+
import { WidgetBaseModule, WidgetService } from 'bbj-widget-base';
|
|
5
|
+
|
|
6
|
+
@NgModule({
|
|
7
|
+
declarations: [BreathingBubbleLayerComponent],
|
|
8
|
+
imports: [CommonModule, WidgetBaseModule],
|
|
9
|
+
})
|
|
10
|
+
export class BreathingBubbleLayerModule {
|
|
11
|
+
constructor(widgetService: WidgetService) {
|
|
12
|
+
widgetService.register(BreathingBubbleLayerComponent);
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
|
2
|
+
|
|
3
|
+
import { BubbleChartComponent } from './bubble-chart.component';
|
|
4
|
+
|
|
5
|
+
describe('BubbleChartComponent', () => {
|
|
6
|
+
let component: BubbleChartComponent;
|
|
7
|
+
let fixture: ComponentFixture<BubbleChartComponent>;
|
|
8
|
+
|
|
9
|
+
beforeEach(waitForAsync(() => {
|
|
10
|
+
TestBed.configureTestingModule({
|
|
11
|
+
declarations: [ BubbleChartComponent ]
|
|
12
|
+
})
|
|
13
|
+
.compileComponents();
|
|
14
|
+
}));
|
|
15
|
+
|
|
16
|
+
beforeEach(() => {
|
|
17
|
+
fixture = TestBed.createComponent(BubbleChartComponent);
|
|
18
|
+
component = fixture.componentInstance;
|
|
19
|
+
fixture.detectChanges();
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
it('should create', () => {
|
|
23
|
+
expect(component).toBeTruthy();
|
|
24
|
+
});
|
|
25
|
+
});
|