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