bbj-screen-widget 2.4.63 → 2.4.64
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 +34 -33
- package/bbj-screen-widget.metadata.json +1 -1
- package/bundles/bbj-screen-widget.umd.js +719 -347
- package/bundles/bbj-screen-widget.umd.js.map +1 -1
- package/bundles/bbj-screen-widget.umd.min.js +1 -1
- package/bundles/bbj-screen-widget.umd.min.js.map +1 -1
- package/esm2015/bbj-screen-widget.js +35 -34
- package/esm2015/lib/custom-baidu-map/baidu-fence/baidu-fence.component.js +400 -0
- package/esm2015/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.js +1 -27
- package/esm2015/lib/custom-baidu-map/base-layer.js +27 -1
- package/esm2015/lib/custom-baidu-map/custom-baidu-map.component.js +11 -4
- package/esm2015/lib/custom-baidu-map/custom-baidu-map.module.js +6 -1
- package/fesm2015/bbj-screen-widget.js +441 -38
- package/fesm2015/bbj-screen-widget.js.map +1 -1
- package/lib/custom-baidu-map/baidu-fence/baidu-fence.component.d.ts +29 -0
- package/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.d.ts +0 -1
- package/lib/custom-baidu-map/base-layer.d.ts +1 -0
- package/package.json +2 -1
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { BaseLayer } from '../base-layer';
|
|
3
|
+
import { Subject } from 'rxjs';
|
|
4
|
+
export declare class BaiduFenceComponent extends BaseLayer implements OnInit, OnDestroy {
|
|
5
|
+
lineWidth: number;
|
|
6
|
+
lineColor: string;
|
|
7
|
+
fillColor: string;
|
|
8
|
+
showDrawButton: boolean;
|
|
9
|
+
data: any[];
|
|
10
|
+
create: EventEmitter<any>;
|
|
11
|
+
layer: any;
|
|
12
|
+
textLayer: any;
|
|
13
|
+
editLayer: any;
|
|
14
|
+
editData: any[];
|
|
15
|
+
stopEdit$: Subject<void>;
|
|
16
|
+
editLineLayer: any;
|
|
17
|
+
searchText: string;
|
|
18
|
+
polygon: any;
|
|
19
|
+
circle: any;
|
|
20
|
+
scene: any;
|
|
21
|
+
ngOnInit(): Promise<void>;
|
|
22
|
+
ngOnDestroy(): void;
|
|
23
|
+
createLayers(): any[];
|
|
24
|
+
updateData(): void;
|
|
25
|
+
startDraw(type: string): Promise<void>;
|
|
26
|
+
updateEditData(): void;
|
|
27
|
+
stopDraw(): void;
|
|
28
|
+
search(): void;
|
|
29
|
+
}
|
|
@@ -60,7 +60,6 @@ export declare class BaiduMarkerLayerComponent extends BaseLayer implements OnIn
|
|
|
60
60
|
updateTextVisible(zoom?: number): void;
|
|
61
61
|
updateData(): void;
|
|
62
62
|
getIconOptions(group: any): any;
|
|
63
|
-
getTextOptions(font: any): any;
|
|
64
63
|
addPickEvent(options: any): void;
|
|
65
64
|
select(id: any, options?: {
|
|
66
65
|
move?: boolean;
|
|
@@ -11,6 +11,7 @@ export declare abstract class BaseLayer implements OnInit, OnDestroy, OnChanges
|
|
|
11
11
|
ngOnDestroy(): void;
|
|
12
12
|
updateLayers(): Promise<void>;
|
|
13
13
|
removeLayers(): void;
|
|
14
|
+
getTextOptions(font: any): any;
|
|
14
15
|
abstract updateData(): void;
|
|
15
16
|
abstract createLayers(): any[];
|
|
16
17
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bbj-screen-widget",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.64",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@fullcalendar/angular": "~5.5.0",
|
|
6
6
|
"@fullcalendar/daygrid": "~5.5.0",
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"@fullcalendar/resource-timeline": "~5.5.0",
|
|
9
9
|
"@fullcalendar/timegrid": "~5.5.0",
|
|
10
10
|
"swiper": "11.2.6",
|
|
11
|
+
"bmap-draw": "^1.0.40",
|
|
11
12
|
"tslib": "^2.0.0"
|
|
12
13
|
},
|
|
13
14
|
"peerDependencies": {
|