@syncfusion/ej2-angular-maps 20.4.54 → 21.1.35-ngcc
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/@syncfusion/ej2-angular-maps.es5.js +868 -0
- package/@syncfusion/ej2-angular-maps.es5.js.map +1 -0
- package/@syncfusion/ej2-angular-maps.js +801 -0
- package/@syncfusion/ej2-angular-maps.js.map +1 -0
- package/CHANGELOG.md +582 -0
- package/dist/ej2-angular-maps.umd.js +1113 -0
- package/dist/ej2-angular-maps.umd.js.map +1 -0
- package/dist/ej2-angular-maps.umd.min.js +11 -0
- package/dist/ej2-angular-maps.umd.min.js.map +1 -0
- package/{syncfusion-ej2-angular-maps.d.ts → ej2-angular-maps.d.ts} +1 -1
- package/ej2-angular-maps.metadata.json +1 -0
- package/package.json +15 -29
- package/postinstall/tagchange.js +18 -0
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/src/maps/annotations.directive.d.ts +10 -12
- package/src/maps/bubblesettings.directive.d.ts +20 -25
- package/src/maps/colormapping.directive.d.ts +9 -14
- package/src/maps/initialshapeselection.directive.d.ts +3 -8
- package/src/maps/layers.directive.d.ts +37 -37
- package/src/maps/maps-all.module.d.ts +0 -6
- package/src/maps/maps.component.d.ts +4 -4
- package/src/maps/maps.module.d.ts +0 -13
- package/src/maps/markersettings.directive.d.ts +32 -31
- package/src/maps/navigationlinesettings.directive.d.ts +11 -15
- package/esm2020/public_api.mjs +0 -3
- package/esm2020/src/index.mjs +0 -12
- package/esm2020/src/maps/annotations.directive.mjs +0 -62
- package/esm2020/src/maps/bubblesettings.directive.mjs +0 -71
- package/esm2020/src/maps/colormapping.directive.mjs +0 -61
- package/esm2020/src/maps/initialshapeselection.directive.mjs +0 -59
- package/esm2020/src/maps/layers.directive.mjs +0 -64
- package/esm2020/src/maps/maps-all.module.mjs +0 -65
- package/esm2020/src/maps/maps.component.mjs +0 -160
- package/esm2020/src/maps/maps.module.mjs +0 -88
- package/esm2020/src/maps/markersettings.directive.mjs +0 -73
- package/esm2020/src/maps/navigationlinesettings.directive.mjs +0 -67
- package/esm2020/syncfusion-ej2-angular-maps.mjs +0 -5
- package/fesm2015/syncfusion-ej2-angular-maps.mjs +0 -728
- package/fesm2015/syncfusion-ej2-angular-maps.mjs.map +0 -1
- package/fesm2020/syncfusion-ej2-angular-maps.mjs +0 -728
- package/fesm2020/syncfusion-ej2-angular-maps.mjs.map +0 -1
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
/**
|
|
5
|
-
*
|
|
4
|
+
* Represents the directive to define the layer of the maps.
|
|
6
5
|
* ```html
|
|
7
6
|
* <e-layers>
|
|
8
7
|
* <e-layer></e-layer>
|
|
@@ -18,132 +17,135 @@ export declare class LayerDirective extends ComplexBase<LayerDirective> {
|
|
|
18
17
|
childNavigationLineSettings: any;
|
|
19
18
|
tags: string[];
|
|
20
19
|
/**
|
|
21
|
-
*
|
|
20
|
+
* Gets or sets the type of the layer in maps. There are two types: Layer and SubLayer.
|
|
22
21
|
* @default Layer
|
|
23
22
|
*/
|
|
24
23
|
type: any;
|
|
25
24
|
/**
|
|
26
|
-
*
|
|
25
|
+
* Gets or sets the duration of the animation of layers when the zooming is performed in maps.
|
|
27
26
|
* @default 0
|
|
28
27
|
*/
|
|
29
28
|
animationDuration: any;
|
|
30
29
|
/**
|
|
31
|
-
*
|
|
32
|
-
* then the map will
|
|
33
|
-
|
|
30
|
+
* Gets or sets the Bing map type for the layer. If you set GeoJSON data in the map and set the `BingMapType` value without setting the layer type as "Bing",
|
|
31
|
+
* then the map will be rendered based on the provided shape data since the default layer type will be set as "Geometry".
|
|
32
|
+
|
|
34
33
|
* @default Aerial
|
|
35
34
|
*/
|
|
36
35
|
bingMapType: any;
|
|
37
36
|
/**
|
|
38
|
-
*
|
|
37
|
+
* Gets or sets the options for customizing the bubbles in maps.
|
|
39
38
|
*/
|
|
40
39
|
bubbleSettings: any;
|
|
41
40
|
/**
|
|
42
|
-
*
|
|
41
|
+
* Gets or sets the options for customizing the data labels in maps.
|
|
43
42
|
*/
|
|
44
43
|
dataLabelSettings: any;
|
|
45
44
|
/**
|
|
46
|
-
*
|
|
47
|
-
*
|
|
45
|
+
* Gets or sets the data source for the layer.
|
|
46
|
+
* The data bound to the shapes using data source can be used to display the tooltip, marker, and bubble.
|
|
48
47
|
* @isobservable true
|
|
49
48
|
* @default []
|
|
50
49
|
*/
|
|
51
50
|
dataSource: any;
|
|
52
51
|
/**
|
|
53
|
-
*
|
|
52
|
+
* Gets or sets the geometry type for the layer in maps. There are two types: Geographic and Normal.
|
|
53
|
+
* * Geographic type renders the shape maps with geographical coordinate system.
|
|
54
|
+
* * Normal type renders the shape maps using default coordinate system.
|
|
54
55
|
* @default Geographic
|
|
55
56
|
*/
|
|
56
57
|
geometryType: any;
|
|
57
58
|
/**
|
|
58
|
-
*
|
|
59
|
+
* Gets or sets the options for customizing the shapes when the mouse hovers over maps.
|
|
59
60
|
*/
|
|
60
61
|
highlightSettings: any;
|
|
61
62
|
/**
|
|
62
|
-
*
|
|
63
|
+
* Gets or sets the settings for the shapes to be selected when the maps rendering initially.
|
|
64
|
+
* The initial selection of shapes will be performed only when the selection functionality of layer is enabled.
|
|
63
65
|
*/
|
|
64
66
|
initialShapeSelection: any;
|
|
65
67
|
/**
|
|
66
|
-
*
|
|
67
|
-
|
|
68
|
+
* Gets or sets the key for the online map provider to render in the layer of the maps.
|
|
69
|
+
|
|
68
70
|
* @default ''
|
|
69
71
|
*/
|
|
70
72
|
key: any;
|
|
71
73
|
/**
|
|
72
|
-
*
|
|
74
|
+
* Gets or sets the type of the layer in maps. If we use layer type with shape data property in layer of the maps
|
|
73
75
|
* then map will render based on the provided layer type.
|
|
74
|
-
|
|
76
|
+
|
|
75
77
|
* @default Geometry
|
|
76
78
|
*/
|
|
77
79
|
layerType: any;
|
|
78
80
|
/**
|
|
79
|
-
*
|
|
81
|
+
* Gets or sets the options for customizing the cluster of markers in maps.
|
|
80
82
|
*/
|
|
81
83
|
markerClusterSettings: any;
|
|
82
84
|
/**
|
|
83
|
-
*
|
|
85
|
+
* Gets or sets the options for customizing the markers in maps.
|
|
84
86
|
*/
|
|
85
87
|
markerSettings: any;
|
|
86
88
|
/**
|
|
87
|
-
*
|
|
89
|
+
* Gets or sets the options for customizing the navigation lines in maps.
|
|
88
90
|
*/
|
|
89
91
|
navigationLineSettings: any;
|
|
90
92
|
/**
|
|
91
|
-
*
|
|
93
|
+
* Gets or sets the query to select particular data from the layer data source.
|
|
92
94
|
* This property is applicable only when the data source is created by data manager.
|
|
93
95
|
* @default null
|
|
94
96
|
*/
|
|
95
97
|
query: any;
|
|
96
98
|
/**
|
|
97
|
-
*
|
|
99
|
+
* Gets or sets the options for customizing the shapes when clicking on the shapes in maps.
|
|
98
100
|
*/
|
|
99
101
|
selectionSettings: any;
|
|
100
102
|
/**
|
|
101
|
-
*
|
|
103
|
+
* Gets or sets the data for the maps to render.
|
|
104
|
+
* The data is normally JSON object with GeoJSON format that defines the shapes and geometries of the map.
|
|
102
105
|
* @isobservable true
|
|
103
106
|
* @default null
|
|
104
107
|
*/
|
|
105
108
|
shapeData: any;
|
|
106
109
|
/**
|
|
107
|
-
*
|
|
110
|
+
* Gets or sets the field name from the GeoJSON data to map the shape to the data defined in the layer data source.
|
|
108
111
|
* @default 'name'
|
|
109
112
|
*/
|
|
110
113
|
shapeDataPath: any;
|
|
111
114
|
/**
|
|
112
|
-
*
|
|
115
|
+
* Gets or sets the field name from the data source to map the shape to the data defined in the layer data source.
|
|
113
116
|
* @default 'name'
|
|
114
117
|
*/
|
|
115
118
|
shapePropertyPath: any;
|
|
116
119
|
/**
|
|
117
|
-
*
|
|
120
|
+
* Gets or sets the options to customize the shape of the maps.
|
|
118
121
|
*/
|
|
119
122
|
shapeSettings: any;
|
|
120
123
|
/**
|
|
121
|
-
*
|
|
122
|
-
|
|
124
|
+
* Gets or sets the type of the static maps.
|
|
125
|
+
|
|
123
126
|
* @default RoadMap
|
|
124
127
|
*/
|
|
125
128
|
staticMapType: any;
|
|
126
129
|
/**
|
|
127
|
-
*
|
|
130
|
+
* Gets or sets the options for customizing the toggle state of shapes when selecting the legend in maps.
|
|
128
131
|
*/
|
|
129
132
|
toggleLegendSettings: any;
|
|
130
133
|
/**
|
|
131
|
-
*
|
|
134
|
+
* Gets or sets the options for customizing the tooltip of the layers in maps.
|
|
132
135
|
*/
|
|
133
136
|
tooltipSettings: any;
|
|
134
137
|
/**
|
|
135
|
-
*
|
|
138
|
+
* Gets or sets the URL of the online map providers.
|
|
139
|
+
* The online map providers will be rendered only when the shape data is not set and layer type is set with default value.
|
|
136
140
|
* @default ''
|
|
137
141
|
*/
|
|
138
142
|
urlTemplate: any;
|
|
139
143
|
/**
|
|
140
|
-
* Enables or disables the visibility
|
|
144
|
+
* Enables or disables the visibility of the layers in maps.
|
|
141
145
|
* @default true
|
|
142
146
|
*/
|
|
143
147
|
visible: any;
|
|
144
148
|
constructor(viewContainerRef: ViewContainerRef);
|
|
145
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LayerDirective, never>;
|
|
146
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LayerDirective, "e-layers>e-layer", never, { "animationDuration": "animationDuration"; "bingMapType": "bingMapType"; "bubbleSettings": "bubbleSettings"; "dataLabelSettings": "dataLabelSettings"; "dataSource": "dataSource"; "geometryType": "geometryType"; "highlightSettings": "highlightSettings"; "initialShapeSelection": "initialShapeSelection"; "key": "key"; "layerType": "layerType"; "markerClusterSettings": "markerClusterSettings"; "markerSettings": "markerSettings"; "navigationLineSettings": "navigationLineSettings"; "query": "query"; "selectionSettings": "selectionSettings"; "shapeData": "shapeData"; "shapeDataPath": "shapeDataPath"; "shapePropertyPath": "shapePropertyPath"; "shapeSettings": "shapeSettings"; "staticMapType": "staticMapType"; "toggleLegendSettings": "toggleLegendSettings"; "tooltipSettings": "tooltipSettings"; "type": "type"; "urlTemplate": "urlTemplate"; "visible": "visible"; }, {}, ["childInitialShapeSelection", "childMarkerSettings", "childBubbleSettings", "childNavigationLineSettings"]>;
|
|
147
149
|
}
|
|
148
150
|
/**
|
|
149
151
|
* Layer Array Directive
|
|
@@ -151,6 +153,4 @@ export declare class LayerDirective extends ComplexBase<LayerDirective> {
|
|
|
151
153
|
*/
|
|
152
154
|
export declare class LayersDirective extends ArrayBase<LayersDirective> {
|
|
153
155
|
constructor();
|
|
154
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LayersDirective, never>;
|
|
155
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LayersDirective, "ej-maps>e-layers", never, {}, {}, ["children"]>;
|
|
156
156
|
}
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import { ValueProvider } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@angular/common";
|
|
4
|
-
import * as i2 from "./maps.module";
|
|
5
2
|
export declare const BubbleService: ValueProvider;
|
|
6
3
|
export declare const LegendService: ValueProvider;
|
|
7
4
|
export declare const MarkerService: ValueProvider;
|
|
@@ -19,7 +16,4 @@ export declare const ImageExportService: ValueProvider;
|
|
|
19
16
|
* NgModule definition for the Maps component with providers.
|
|
20
17
|
*/
|
|
21
18
|
export declare class MapsAllModule {
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MapsAllModule, never>;
|
|
23
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MapsAllModule, never, [typeof i1.CommonModule, typeof i2.MapsModule], [typeof i2.MapsModule]>;
|
|
24
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MapsAllModule>;
|
|
25
19
|
}
|
|
@@ -3,12 +3,12 @@ import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
|
3
3
|
import { Maps } from '@syncfusion/ej2-maps';
|
|
4
4
|
import { LayersDirective } from './layers.directive';
|
|
5
5
|
import { AnnotationsDirective } from './annotations.directive';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
6
|
export declare const inputs: string[];
|
|
8
7
|
export declare const outputs: string[];
|
|
9
8
|
export declare const twoWays: string[];
|
|
10
9
|
/**
|
|
11
|
-
* Represents Maps
|
|
10
|
+
* Represents the Angular Maps component.
|
|
11
|
+
* It is ideal for rendering maps from GeoJSON data or other map providers like OpenStreetMap, Google Maps, Bing Maps, etc that has rich feature set that includes markers, labels, bubbles and much more.
|
|
12
12
|
* ```html
|
|
13
13
|
* <ej-maps></ej-maps>
|
|
14
14
|
* ```
|
|
@@ -39,6 +39,8 @@ export declare class MapsComponent extends Maps implements IComponentBase {
|
|
|
39
39
|
markerClusterClick: any;
|
|
40
40
|
markerClusterMouseMove: any;
|
|
41
41
|
markerClusterRendering: any;
|
|
42
|
+
markerDragEnd: any;
|
|
43
|
+
markerDragStart: any;
|
|
42
44
|
markerMouseMove: any;
|
|
43
45
|
markerRendering: any;
|
|
44
46
|
onclick: any;
|
|
@@ -62,6 +64,4 @@ export declare class MapsComponent extends Maps implements IComponentBase {
|
|
|
62
64
|
ngAfterContentChecked(): void;
|
|
63
65
|
registerEvents: (eventList: string[]) => void;
|
|
64
66
|
addTwoWay: (propList: string[]) => void;
|
|
65
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MapsComponent, never>;
|
|
66
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MapsComponent, "ejs-maps", never, { "allowImageExport": "allowImageExport"; "allowPdfExport": "allowPdfExport"; "allowPrint": "allowPrint"; "annotations": "annotations"; "background": "background"; "baseLayerIndex": "baseLayerIndex"; "border": "border"; "centerPosition": "centerPosition"; "description": "description"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "format": "format"; "height": "height"; "layers": "layers"; "legendSettings": "legendSettings"; "locale": "locale"; "mapsArea": "mapsArea"; "margin": "margin"; "projectionType": "projectionType"; "tabIndex": "tabIndex"; "theme": "theme"; "titleSettings": "titleSettings"; "tooltipDisplayMode": "tooltipDisplayMode"; "useGroupingSeparator": "useGroupingSeparator"; "width": "width"; "zoomSettings": "zoomSettings"; }, { "animationComplete": "animationComplete"; "annotationRendering": "annotationRendering"; "beforePrint": "beforePrint"; "bubbleClick": "bubbleClick"; "bubbleMouseMove": "bubbleMouseMove"; "bubbleRendering": "bubbleRendering"; "click": "click"; "dataLabelRendering": "dataLabelRendering"; "doubleClick": "doubleClick"; "itemHighlight": "itemHighlight"; "itemSelection": "itemSelection"; "layerRendering": "layerRendering"; "legendRendering": "legendRendering"; "load": "load"; "loaded": "loaded"; "markerClick": "markerClick"; "markerClusterClick": "markerClusterClick"; "markerClusterMouseMove": "markerClusterMouseMove"; "markerClusterRendering": "markerClusterRendering"; "markerMouseMove": "markerMouseMove"; "markerRendering": "markerRendering"; "onclick": "onclick"; "pan": "pan"; "resize": "resize"; "rightClick": "rightClick"; "shapeHighlight": "shapeHighlight"; "shapeRendering": "shapeRendering"; "shapeSelected": "shapeSelected"; "tooltipRender": "tooltipRender"; "tooltipRenderComplete": "tooltipRenderComplete"; "zoom": "zoom"; "dataSourceChange": "dataSourceChange"; }, ["childLayers", "childAnnotations"], never>;
|
|
67
67
|
}
|
|
@@ -1,18 +1,5 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./maps.component";
|
|
3
|
-
import * as i2 from "./initialshapeselection.directive";
|
|
4
|
-
import * as i3 from "./markersettings.directive";
|
|
5
|
-
import * as i4 from "./colormapping.directive";
|
|
6
|
-
import * as i5 from "./bubblesettings.directive";
|
|
7
|
-
import * as i6 from "./navigationlinesettings.directive";
|
|
8
|
-
import * as i7 from "./layers.directive";
|
|
9
|
-
import * as i8 from "./annotations.directive";
|
|
10
|
-
import * as i9 from "@angular/common";
|
|
11
1
|
/**
|
|
12
2
|
* NgModule definition for the Maps component.
|
|
13
3
|
*/
|
|
14
4
|
export declare class MapsModule {
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MapsModule, never>;
|
|
16
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MapsModule, [typeof i1.MapsComponent, typeof i2.InitialShapeSelectionDirective, typeof i2.InitialShapeSelectionsDirective, typeof i3.MarkerDirective, typeof i3.MarkersDirective, typeof i4.ColorMappingDirective, typeof i4.ColorMappingsDirective, typeof i5.BubbleDirective, typeof i5.BubblesDirective, typeof i6.NavigationLineDirective, typeof i6.NavigationLinesDirective, typeof i7.LayerDirective, typeof i7.LayersDirective, typeof i8.AnnotationDirective, typeof i8.AnnotationsDirective], [typeof i9.CommonModule], [typeof i1.MapsComponent, typeof i2.InitialShapeSelectionDirective, typeof i2.InitialShapeSelectionsDirective, typeof i3.MarkerDirective, typeof i3.MarkersDirective, typeof i4.ColorMappingDirective, typeof i4.ColorMappingsDirective, typeof i5.BubbleDirective, typeof i5.BubblesDirective, typeof i6.NavigationLineDirective, typeof i6.NavigationLinesDirective, typeof i7.LayerDirective, typeof i7.LayersDirective, typeof i8.AnnotationDirective, typeof i8.AnnotationsDirective]>;
|
|
17
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MapsModule>;
|
|
18
5
|
}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
/**
|
|
5
|
-
*
|
|
4
|
+
* Represents the directive to define the markers in the maps.
|
|
6
5
|
* ```html
|
|
7
6
|
* <e-layers>
|
|
8
7
|
* <e-layer>
|
|
@@ -18,30 +17,30 @@ export declare class MarkerDirective extends ComplexBase<MarkerDirective> {
|
|
|
18
17
|
private viewContainerRef;
|
|
19
18
|
directivePropList: any;
|
|
20
19
|
/**
|
|
21
|
-
*
|
|
20
|
+
* Gets or sets the delay time for the animation in marker.
|
|
22
21
|
* @default 0
|
|
23
22
|
*/
|
|
24
23
|
animationDelay: any;
|
|
25
24
|
/**
|
|
26
|
-
*
|
|
25
|
+
* Gets or sets the duration time for animating the marker.
|
|
27
26
|
* @default 1000
|
|
28
27
|
*/
|
|
29
28
|
animationDuration: any;
|
|
30
29
|
/**
|
|
31
|
-
*
|
|
30
|
+
* Gets or sets the options for customizing the style properties of the border of the marker in maps.
|
|
32
31
|
*/
|
|
33
32
|
border: any;
|
|
34
33
|
/**
|
|
35
|
-
*
|
|
34
|
+
* Gets or sets the field name from the marker data source based on which the color is applied for the marker.
|
|
36
35
|
* @default null
|
|
37
36
|
*/
|
|
38
37
|
colorValuePath: any;
|
|
39
38
|
/**
|
|
40
|
-
*
|
|
39
|
+
* Gets or sets the dash-array for the marker.
|
|
41
40
|
*/
|
|
42
41
|
dashArray: any;
|
|
43
42
|
/**
|
|
44
|
-
*
|
|
43
|
+
* Gets or sets the data source for the marker.
|
|
45
44
|
* The data source for the marker will contain latitude and longitude values to specify the location
|
|
46
45
|
* of the marker.
|
|
47
46
|
* The data source can contain data such as color, shape, and other details that can be bound to the color, shape,
|
|
@@ -51,97 +50,101 @@ export declare class MarkerDirective extends ComplexBase<MarkerDirective> {
|
|
|
51
50
|
*/
|
|
52
51
|
dataSource: any;
|
|
53
52
|
/**
|
|
54
|
-
*
|
|
53
|
+
* Enables or disables marker drag and drop functionality at any location on the map.
|
|
54
|
+
* @default false
|
|
55
|
+
*/
|
|
56
|
+
enableDrag: any;
|
|
57
|
+
/**
|
|
58
|
+
* Gets or sets the color for the marker in maps.
|
|
55
59
|
* @default '#FF471A'
|
|
56
60
|
*/
|
|
57
61
|
fill: any;
|
|
58
62
|
/**
|
|
59
|
-
*
|
|
63
|
+
* Gets or sets the height of the marker in maps.
|
|
60
64
|
* @default 10
|
|
61
65
|
*/
|
|
62
66
|
height: any;
|
|
63
67
|
/**
|
|
64
|
-
*
|
|
68
|
+
* Gets or sets the options to customize the marker when the mouse hovers over the markers in maps.
|
|
65
69
|
*/
|
|
66
70
|
highlightSettings: any;
|
|
67
71
|
/**
|
|
68
|
-
*
|
|
72
|
+
* Gets or sets the URL for rendering the marker as image. This property acts as image source for all the markers in a marker settings.
|
|
69
73
|
*/
|
|
70
74
|
imageUrl: any;
|
|
71
75
|
/**
|
|
72
|
-
*
|
|
76
|
+
* Gets or sets the field name from the marker data source based on which the image source for the image type marker is got individually.
|
|
73
77
|
* @default null
|
|
74
78
|
*/
|
|
75
79
|
imageUrlValuePath: any;
|
|
76
80
|
/**
|
|
77
|
-
*
|
|
81
|
+
* Gets or sets the options to select the markers at the initial rendering time of the maps.
|
|
82
|
+
* The initial selection of markers will be performed only when the selection functionality of marker is enabled.
|
|
78
83
|
*/
|
|
79
84
|
initialMarkerSelection: any;
|
|
80
85
|
/**
|
|
81
|
-
* Defines the
|
|
86
|
+
* Defines the field name from the marker data source for setting latitude for a set of markers.
|
|
82
87
|
*/
|
|
83
88
|
latitudeValuePath: any;
|
|
84
89
|
/**
|
|
85
|
-
*
|
|
90
|
+
* Gets or sets the field name from the marker data source to render legend item text for the marker legend.
|
|
86
91
|
* @default ''
|
|
87
92
|
*/
|
|
88
93
|
legendText: any;
|
|
89
94
|
/**
|
|
90
|
-
* Defines the
|
|
95
|
+
* Defines the field name from the marker data source for setting longitude for a set of markers.
|
|
91
96
|
*/
|
|
92
97
|
longitudeValuePath: any;
|
|
93
98
|
/**
|
|
94
|
-
*
|
|
99
|
+
* Gets or sets the offset value from which the marker must be rendered from the intended position.
|
|
95
100
|
*/
|
|
96
101
|
offset: any;
|
|
97
102
|
/**
|
|
98
|
-
*
|
|
103
|
+
* Gets or sets the opacity for the marker in maps.
|
|
99
104
|
* @default 1
|
|
100
105
|
*/
|
|
101
106
|
opacity: any;
|
|
102
107
|
/**
|
|
103
|
-
*
|
|
108
|
+
* Gets or sets the query to select particular data from the marker data source.
|
|
104
109
|
* This property is applicable only when the data source is created by data manager.
|
|
105
110
|
* @default null
|
|
106
111
|
*/
|
|
107
112
|
query: any;
|
|
108
113
|
/**
|
|
109
|
-
*
|
|
114
|
+
* Gets or sets the options to customize the marker while selecting the marker in maps.
|
|
110
115
|
*/
|
|
111
116
|
selectionSettings: any;
|
|
112
117
|
/**
|
|
113
|
-
*
|
|
118
|
+
* Gets or sets the shape of the marker in maps.
|
|
114
119
|
* @default Balloon
|
|
115
120
|
*/
|
|
116
121
|
shape: any;
|
|
117
122
|
/**
|
|
118
|
-
*
|
|
123
|
+
* Gets or sets the field name from the marker data source based on which the shape for individual markers are set.
|
|
119
124
|
* @default null
|
|
120
125
|
*/
|
|
121
126
|
shapeValuePath: any;
|
|
122
127
|
/**
|
|
123
|
-
*
|
|
128
|
+
* Gets or sets the options to customize the tooltip of the marker in maps.
|
|
124
129
|
*/
|
|
125
130
|
tooltipSettings: any;
|
|
126
131
|
/**
|
|
127
|
-
* Enables or disables the visibility
|
|
132
|
+
* Enables or disables the visibility of the markers in maps.
|
|
128
133
|
* @default false
|
|
129
134
|
*/
|
|
130
135
|
visible: any;
|
|
131
136
|
/**
|
|
132
|
-
*
|
|
137
|
+
* Gets or sets the width of the marker in maps.
|
|
133
138
|
* @default 10
|
|
134
139
|
*/
|
|
135
140
|
width: any;
|
|
136
141
|
/**
|
|
137
|
-
*
|
|
142
|
+
* Gets or sets the template for the marker to render custom elements.
|
|
138
143
|
* @default null
|
|
139
144
|
*/
|
|
140
145
|
template: any;
|
|
141
146
|
tooltipSettings_template: any;
|
|
142
147
|
constructor(viewContainerRef: ViewContainerRef);
|
|
143
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MarkerDirective, never>;
|
|
144
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MarkerDirective, "e-layer>e-markerSettings>e-markerSetting", never, { "animationDelay": "animationDelay"; "animationDuration": "animationDuration"; "border": "border"; "colorValuePath": "colorValuePath"; "dashArray": "dashArray"; "dataSource": "dataSource"; "fill": "fill"; "height": "height"; "highlightSettings": "highlightSettings"; "imageUrl": "imageUrl"; "imageUrlValuePath": "imageUrlValuePath"; "initialMarkerSelection": "initialMarkerSelection"; "latitudeValuePath": "latitudeValuePath"; "legendText": "legendText"; "longitudeValuePath": "longitudeValuePath"; "offset": "offset"; "opacity": "opacity"; "query": "query"; "selectionSettings": "selectionSettings"; "shape": "shape"; "shapeValuePath": "shapeValuePath"; "template": "template"; "tooltipSettings": "tooltipSettings"; "visible": "visible"; "width": "width"; }, {}, ["template", "tooltipSettings_template"]>;
|
|
145
148
|
}
|
|
146
149
|
/**
|
|
147
150
|
* Marker Array Directive
|
|
@@ -149,6 +152,4 @@ export declare class MarkerDirective extends ComplexBase<MarkerDirective> {
|
|
|
149
152
|
*/
|
|
150
153
|
export declare class MarkersDirective extends ArrayBase<MarkersDirective> {
|
|
151
154
|
constructor();
|
|
152
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MarkersDirective, never>;
|
|
153
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MarkersDirective, "e-layer>e-markerSettings", never, {}, {}, ["children"]>;
|
|
154
155
|
}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
/**
|
|
5
|
-
*
|
|
4
|
+
* Represents the directive to define the navigation lines in the maps.
|
|
6
5
|
* ```html
|
|
7
6
|
* <e-layers>
|
|
8
7
|
* <e-layer>
|
|
@@ -18,39 +17,40 @@ export declare class NavigationLineDirective extends ComplexBase<NavigationLineD
|
|
|
18
17
|
private viewContainerRef;
|
|
19
18
|
directivePropList: any;
|
|
20
19
|
/**
|
|
21
|
-
*
|
|
20
|
+
* Gets or sets the angle of the curve connecting different locations in maps.
|
|
22
21
|
* @default 0
|
|
23
22
|
*/
|
|
24
23
|
angle: any;
|
|
25
24
|
/**
|
|
26
|
-
*
|
|
25
|
+
* Gets or sets the options to customize the arrow for the navigation line in maps.
|
|
27
26
|
*/
|
|
28
27
|
arrowSettings: any;
|
|
29
28
|
/**
|
|
30
|
-
*
|
|
29
|
+
* Gets or sets the color for the navigation lines in maps.
|
|
30
|
+
* @default 'black'
|
|
31
31
|
*/
|
|
32
32
|
color: any;
|
|
33
33
|
/**
|
|
34
|
-
*
|
|
34
|
+
* Gets or sets the dash-array for the navigation lines drawn in maps.
|
|
35
35
|
* @default ''
|
|
36
36
|
*/
|
|
37
37
|
dashArray: any;
|
|
38
38
|
/**
|
|
39
|
-
*
|
|
39
|
+
* Gets or sets the highlight settings of the navigation line in maps.
|
|
40
40
|
*/
|
|
41
41
|
highlightSettings: any;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* Gets or sets the latitude value for the navigation lines to be drawn in maps.
|
|
44
44
|
* @default []
|
|
45
45
|
*/
|
|
46
46
|
latitude: any;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Gets or sets the longitude for the navigation lines to be drawn in maps.
|
|
49
49
|
* @default []
|
|
50
50
|
*/
|
|
51
51
|
longitude: any;
|
|
52
52
|
/**
|
|
53
|
-
*
|
|
53
|
+
* Gets or sets the selection settings of the navigation line in maps.
|
|
54
54
|
*/
|
|
55
55
|
selectionSettings: any;
|
|
56
56
|
/**
|
|
@@ -59,14 +59,12 @@ export declare class NavigationLineDirective extends ComplexBase<NavigationLineD
|
|
|
59
59
|
*/
|
|
60
60
|
visible: any;
|
|
61
61
|
/**
|
|
62
|
-
*
|
|
62
|
+
* Gets or sets the width of the navigation lines in maps.
|
|
63
63
|
* @default 1
|
|
64
64
|
*/
|
|
65
65
|
width: any;
|
|
66
66
|
tooltipSettings_template: any;
|
|
67
67
|
constructor(viewContainerRef: ViewContainerRef);
|
|
68
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationLineDirective, never>;
|
|
69
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NavigationLineDirective, "e-layer>e-navigationLineSettings>e-navigationLineSetting", never, { "angle": "angle"; "arrowSettings": "arrowSettings"; "color": "color"; "dashArray": "dashArray"; "highlightSettings": "highlightSettings"; "latitude": "latitude"; "longitude": "longitude"; "selectionSettings": "selectionSettings"; "visible": "visible"; "width": "width"; }, {}, ["tooltipSettings_template"]>;
|
|
70
68
|
}
|
|
71
69
|
/**
|
|
72
70
|
* NavigationLine Array Directive
|
|
@@ -74,6 +72,4 @@ export declare class NavigationLineDirective extends ComplexBase<NavigationLineD
|
|
|
74
72
|
*/
|
|
75
73
|
export declare class NavigationLinesDirective extends ArrayBase<NavigationLinesDirective> {
|
|
76
74
|
constructor();
|
|
77
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationLinesDirective, never>;
|
|
78
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NavigationLinesDirective, "e-layer>e-navigationLineSettings", never, {}, {}, ["children"]>;
|
|
79
75
|
}
|
package/esm2020/public_api.mjs
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
// Mapping root file for package generation
|
|
2
|
-
export * from './src/index';
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljX2FwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3B1YmxpY19hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsMkNBQTJDO0FBQzNDLGNBQWMsYUFBYSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLy8gTWFwcGluZyByb290IGZpbGUgZm9yIHBhY2thZ2UgZ2VuZXJhdGlvblxuZXhwb3J0ICogZnJvbSAnLi9zcmMvaW5kZXgnOyJdfQ==
|
package/esm2020/src/index.mjs
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export { InitialShapeSelectionDirective, InitialShapeSelectionsDirective } from './maps/initialshapeselection.directive';
|
|
2
|
-
export { MarkerDirective, MarkersDirective } from './maps/markersettings.directive';
|
|
3
|
-
export { ColorMappingDirective, ColorMappingsDirective } from './maps/colormapping.directive';
|
|
4
|
-
export { BubbleDirective, BubblesDirective } from './maps/bubblesettings.directive';
|
|
5
|
-
export { NavigationLineDirective, NavigationLinesDirective } from './maps/navigationlinesettings.directive';
|
|
6
|
-
export { LayerDirective, LayersDirective } from './maps/layers.directive';
|
|
7
|
-
export { AnnotationDirective, AnnotationsDirective } from './maps/annotations.directive';
|
|
8
|
-
export { MapsComponent } from './maps/maps.component';
|
|
9
|
-
export { MapsModule } from './maps/maps.module';
|
|
10
|
-
export { MapsAllModule, BubbleService, LegendService, MarkerService, HighlightService, SelectionService, MapsTooltipService, ZoomService, DataLabelService, NavigationLineService, AnnotationsService, PrintService, PdfExportService, ImageExportService } from './maps/maps-all.module';
|
|
11
|
-
export * from '@syncfusion/ej2-maps';
|
|
12
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLDhCQUE4QixFQUFDLCtCQUErQixFQUFDLE1BQU0sd0NBQXdDLENBQUM7QUFDdEgsT0FBTyxFQUFDLGVBQWUsRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLGlDQUFpQyxDQUFDO0FBQ2pGLE9BQU8sRUFBQyxxQkFBcUIsRUFBQyxzQkFBc0IsRUFBQyxNQUFNLCtCQUErQixDQUFDO0FBQzNGLE9BQU8sRUFBQyxlQUFlLEVBQUMsZ0JBQWdCLEVBQUMsTUFBTSxpQ0FBaUMsQ0FBQztBQUNqRixPQUFPLEVBQUMsdUJBQXVCLEVBQUMsd0JBQXdCLEVBQUMsTUFBTSx5Q0FBeUMsQ0FBQztBQUN6RyxPQUFPLEVBQUMsY0FBYyxFQUFDLGVBQWUsRUFBQyxNQUFNLHlCQUF5QixDQUFDO0FBQ3ZFLE9BQU8sRUFBQyxtQkFBbUIsRUFBQyxvQkFBb0IsRUFBQyxNQUFNLDhCQUE4QixDQUFDO0FBQ3RGLE9BQU8sRUFBRSxhQUFhLEVBQUMsTUFBTSx1QkFBdUIsQ0FBQztBQUNyRCxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDaEQsT0FBTyxFQUFFLGFBQWEsRUFBRSxhQUFhLEVBQUUsYUFBYSxFQUFFLGFBQWEsRUFBRSxnQkFBZ0IsRUFBRSxnQkFBZ0IsRUFBRSxrQkFBa0IsRUFBRSxXQUFXLEVBQUUsZ0JBQWdCLEVBQUUscUJBQXFCLEVBQUUsa0JBQWtCLEVBQUUsWUFBWSxFQUFFLGdCQUFnQixFQUFFLGtCQUFrQixFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDMVIsY0FBYyxzQkFBc0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB7SW5pdGlhbFNoYXBlU2VsZWN0aW9uRGlyZWN0aXZlLEluaXRpYWxTaGFwZVNlbGVjdGlvbnNEaXJlY3RpdmV9IGZyb20gJy4vbWFwcy9pbml0aWFsc2hhcGVzZWxlY3Rpb24uZGlyZWN0aXZlJztcbmV4cG9ydCB7TWFya2VyRGlyZWN0aXZlLE1hcmtlcnNEaXJlY3RpdmV9IGZyb20gJy4vbWFwcy9tYXJrZXJzZXR0aW5ncy5kaXJlY3RpdmUnO1xuZXhwb3J0IHtDb2xvck1hcHBpbmdEaXJlY3RpdmUsQ29sb3JNYXBwaW5nc0RpcmVjdGl2ZX0gZnJvbSAnLi9tYXBzL2NvbG9ybWFwcGluZy5kaXJlY3RpdmUnO1xuZXhwb3J0IHtCdWJibGVEaXJlY3RpdmUsQnViYmxlc0RpcmVjdGl2ZX0gZnJvbSAnLi9tYXBzL2J1YmJsZXNldHRpbmdzLmRpcmVjdGl2ZSc7XG5leHBvcnQge05hdmlnYXRpb25MaW5lRGlyZWN0aXZlLE5hdmlnYXRpb25MaW5lc0RpcmVjdGl2ZX0gZnJvbSAnLi9tYXBzL25hdmlnYXRpb25saW5lc2V0dGluZ3MuZGlyZWN0aXZlJztcbmV4cG9ydCB7TGF5ZXJEaXJlY3RpdmUsTGF5ZXJzRGlyZWN0aXZlfSBmcm9tICcuL21hcHMvbGF5ZXJzLmRpcmVjdGl2ZSc7XG5leHBvcnQge0Fubm90YXRpb25EaXJlY3RpdmUsQW5ub3RhdGlvbnNEaXJlY3RpdmV9IGZyb20gJy4vbWFwcy9hbm5vdGF0aW9ucy5kaXJlY3RpdmUnO1xuZXhwb3J0IHsgTWFwc0NvbXBvbmVudH0gZnJvbSAnLi9tYXBzL21hcHMuY29tcG9uZW50JztcbmV4cG9ydCB7IE1hcHNNb2R1bGUgfSBmcm9tICcuL21hcHMvbWFwcy5tb2R1bGUnO1xuZXhwb3J0IHsgTWFwc0FsbE1vZHVsZSwgQnViYmxlU2VydmljZSwgTGVnZW5kU2VydmljZSwgTWFya2VyU2VydmljZSwgSGlnaGxpZ2h0U2VydmljZSwgU2VsZWN0aW9uU2VydmljZSwgTWFwc1Rvb2x0aXBTZXJ2aWNlLCBab29tU2VydmljZSwgRGF0YUxhYmVsU2VydmljZSwgTmF2aWdhdGlvbkxpbmVTZXJ2aWNlLCBBbm5vdGF0aW9uc1NlcnZpY2UsIFByaW50U2VydmljZSwgUGRmRXhwb3J0U2VydmljZSwgSW1hZ2VFeHBvcnRTZXJ2aWNlIH0gZnJvbSAnLi9tYXBzL21hcHMtYWxsLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICdAc3luY2Z1c2lvbi9lajItbWFwcyc7Il19
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
import { Directive, ContentChildren, ContentChild } from '@angular/core';
|
|
3
|
-
import { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';
|
|
4
|
-
import { Template } from '@syncfusion/ej2-angular-base';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
let input = ['content', 'horizontalAlignment', 'verticalAlignment', 'x', 'y', 'zIndex'];
|
|
7
|
-
let outputs = [];
|
|
8
|
-
/**
|
|
9
|
-
* Annotation Directive
|
|
10
|
-
* ```html
|
|
11
|
-
* <e-maps-annotations>
|
|
12
|
-
* <e-maps-annotation></e-maps-annotation>
|
|
13
|
-
* </e-maps-annotations>
|
|
14
|
-
* ```
|
|
15
|
-
*/
|
|
16
|
-
export class AnnotationDirective extends ComplexBase {
|
|
17
|
-
constructor(viewContainerRef) {
|
|
18
|
-
super();
|
|
19
|
-
this.viewContainerRef = viewContainerRef;
|
|
20
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
|
21
|
-
this.registerEvents(outputs);
|
|
22
|
-
this.directivePropList = input;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
AnnotationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AnnotationDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
26
|
-
AnnotationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: AnnotationDirective, selector: "e-maps-annotations>e-maps-annotation", inputs: { content: "content", horizontalAlignment: "horizontalAlignment", verticalAlignment: "verticalAlignment", x: "x", y: "y", zIndex: "zIndex" }, queries: [{ propertyName: "content", first: true, predicate: ["content"], descendants: true }], usesInheritance: true, ngImport: i0 });
|
|
27
|
-
__decorate([
|
|
28
|
-
Template()
|
|
29
|
-
], AnnotationDirective.prototype, "content", void 0);
|
|
30
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AnnotationDirective, decorators: [{
|
|
31
|
-
type: Directive,
|
|
32
|
-
args: [{
|
|
33
|
-
selector: 'e-maps-annotations>e-maps-annotation',
|
|
34
|
-
inputs: input,
|
|
35
|
-
outputs: outputs,
|
|
36
|
-
queries: {}
|
|
37
|
-
}]
|
|
38
|
-
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { content: [{
|
|
39
|
-
type: ContentChild,
|
|
40
|
-
args: ['content']
|
|
41
|
-
}] } });
|
|
42
|
-
/**
|
|
43
|
-
* Annotation Array Directive
|
|
44
|
-
* @private
|
|
45
|
-
*/
|
|
46
|
-
export class AnnotationsDirective extends ArrayBase {
|
|
47
|
-
constructor() {
|
|
48
|
-
super('annotations');
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
AnnotationsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AnnotationsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
52
|
-
AnnotationsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: AnnotationsDirective, selector: "ej-maps>e-maps-annotations", queries: [{ propertyName: "children", predicate: AnnotationDirective }], usesInheritance: true, ngImport: i0 });
|
|
53
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AnnotationsDirective, decorators: [{
|
|
54
|
-
type: Directive,
|
|
55
|
-
args: [{
|
|
56
|
-
selector: 'ej-maps>e-maps-annotations',
|
|
57
|
-
queries: {
|
|
58
|
-
children: new ContentChildren(AnnotationDirective)
|
|
59
|
-
},
|
|
60
|
-
}]
|
|
61
|
-
}], ctorParameters: function () { return []; } });
|
|
62
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYW5ub3RhdGlvbnMuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL21hcHMvYW5ub3RhdGlvbnMuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFvQixlQUFlLEVBQUUsWUFBWSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzNGLE9BQU8sRUFBRSxXQUFXLEVBQUUsU0FBUyxFQUFFLFFBQVEsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQ2hGLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQzs7QUFHeEQsSUFBSSxLQUFLLEdBQWEsQ0FBQyxTQUFTLEVBQUUscUJBQXFCLEVBQUUsbUJBQW1CLEVBQUUsR0FBRyxFQUFFLEdBQUcsRUFBRSxRQUFRLENBQUMsQ0FBQztBQUNsRyxJQUFJLE9BQU8sR0FBYSxFQUFFLENBQUM7QUFDM0I7Ozs7Ozs7R0FPRztBQVNILE1BQU0sT0FBTyxtQkFBb0IsU0FBUSxXQUFnQztJQW1DckUsWUFBb0IsZ0JBQWlDO1FBQ2pELEtBQUssRUFBRSxDQUFDO1FBRFEscUJBQWdCLEdBQWhCLGdCQUFnQixDQUFpQjtRQUVqRCxRQUFRLENBQUMsaUJBQWlCLEVBQUUsSUFBSSxFQUFFLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDO1FBQ3pELElBQUksQ0FBQyxjQUFjLENBQUMsT0FBTyxDQUFDLENBQUM7UUFDN0IsSUFBSSxDQUFDLGlCQUFpQixHQUFHLEtBQUssQ0FBQztJQUNuQyxDQUFDOztnSEF4Q1EsbUJBQW1CO29HQUFuQixtQkFBbUI7QUFpQzVCO0lBREMsUUFBUSxFQUFFO29EQUNTOzJGQWpDWCxtQkFBbUI7a0JBUi9CLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLHNDQUFzQztvQkFDaEQsTUFBTSxFQUFFLEtBQUs7b0JBQ2IsT0FBTyxFQUFFLE9BQU87b0JBQ2hCLE9BQU8sRUFBRSxFQUVSO2lCQUNKO3VHQWtDVSxPQUFPO3NCQUZiLFlBQVk7dUJBQUMsU0FBUzs7QUFZM0I7OztHQUdHO0FBT0gsTUFBTSxPQUFPLG9CQUFxQixTQUFRLFNBQStCO0lBQ3JFO1FBQ0ksS0FBSyxDQUFDLGFBQWEsQ0FBQyxDQUFDO0lBQ3pCLENBQUM7O2lIQUhRLG9CQUFvQjtxR0FBcEIsb0JBQW9CLDJGQUhLLG1CQUFtQjsyRkFHNUMsb0JBQW9CO2tCQU5oQyxTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSw0QkFBNEI7b0JBQ3RDLE9BQU8sRUFBRTt3QkFDTCxRQUFRLEVBQUUsSUFBSSxlQUFlLENBQUMsbUJBQW1CLENBQUM7cUJBQ3JEO2lCQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBWaWV3Q29udGFpbmVyUmVmLCBDb250ZW50Q2hpbGRyZW4sIENvbnRlbnRDaGlsZCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tcGxleEJhc2UsIEFycmF5QmFzZSwgc2V0VmFsdWUgfSBmcm9tICdAc3luY2Z1c2lvbi9lajItYW5ndWxhci1iYXNlJztcbmltcG9ydCB7IFRlbXBsYXRlIH0gZnJvbSAnQHN5bmNmdXNpb24vZWoyLWFuZ3VsYXItYmFzZSc7XG5cblxubGV0IGlucHV0OiBzdHJpbmdbXSA9IFsnY29udGVudCcsICdob3Jpem9udGFsQWxpZ25tZW50JywgJ3ZlcnRpY2FsQWxpZ25tZW50JywgJ3gnLCAneScsICd6SW5kZXgnXTtcbmxldCBvdXRwdXRzOiBzdHJpbmdbXSA9IFtdO1xuLyoqXG4gKiBBbm5vdGF0aW9uIERpcmVjdGl2ZVxuICogYGBgaHRtbFxuICogPGUtbWFwcy1hbm5vdGF0aW9ucz5cbiAqIDxlLW1hcHMtYW5ub3RhdGlvbj48L2UtbWFwcy1hbm5vdGF0aW9uPlxuICogPC9lLW1hcHMtYW5ub3RhdGlvbnM+XG4gKiBgYGBcbiAqL1xuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICdlLW1hcHMtYW5ub3RhdGlvbnM+ZS1tYXBzLWFubm90YXRpb24nLFxuICAgIGlucHV0czogaW5wdXQsXG4gICAgb3V0cHV0czogb3V0cHV0cywgICAgXG4gICAgcXVlcmllczoge1xuXG4gICAgfVxufSlcbmV4cG9ydCBjbGFzcyBBbm5vdGF0aW9uRGlyZWN0aXZlIGV4dGVuZHMgQ29tcGxleEJhc2U8QW5ub3RhdGlvbkRpcmVjdGl2ZT4ge1xuICAgIHB1YmxpYyBkaXJlY3RpdmVQcm9wTGlzdDogYW55O1xuXHRcblxuXG4gICAgLyoqIFxuICAgICAqIFNldHMgYW5kIGdldHMgdGhlIGFubm90YXRpb24gZWxlbWVudCB0byBiZSBhbGlnbmVkIGhvcml6b250YWxseS5cbiAgICAgKiBAZGVmYXVsdCBOb25lXG4gICAgICovXG4gICAgcHVibGljIGhvcml6b250YWxBbGlnbm1lbnQ6IGFueTtcbiAgICAvKiogXG4gICAgICogU2V0cyBhbmQgZ2V0cyB0aGUgYW5ub3RhdGlvbiBlbGVtZW50IHRvIGJlIGFsaWduZWQgdmVydGljYWxseS5cbiAgICAgKiBAZGVmYXVsdCBOb25lXG4gICAgICovXG4gICAgcHVibGljIHZlcnRpY2FsQWxpZ25tZW50OiBhbnk7XG4gICAgLyoqIFxuICAgICAqIFNldHMgYW5kIGdldHMgdGhlIHggcG9zaXRpb24gb2YgdGhlIGFubm90YXRpb24gaW4gbWFwcyBjb21wb25lbnQuXG4gICAgICovXG4gICAgcHVibGljIHg6IGFueTtcbiAgICAvKiogXG4gICAgICogU2V0cyBhbmQgZ2V0cyB0aGUgeSBwb3NpdGlvbiBvZiB0aGUgYW5ub3RhdGlvbiBpbiBtYXBzIGNvbXBvbmVudC5cbiAgICAgKi9cbiAgICBwdWJsaWMgeTogYW55O1xuICAgIC8qKiBcbiAgICAgKiBTZXRzIGFuZCBnZXRzIHRoZSB6LWluZGV4IG9mIHRoZSBhbm5vdGF0aW9uIGluIG1hcHMgY29tcG9uZW50LlxuICAgICAqIEBkZWZhdWx0ICctMSdcbiAgICAgKi9cbiAgICBwdWJsaWMgekluZGV4OiBhbnk7XG4gICAgLyoqIFxuICAgICAqIFNldHMgYW5kIGdldHMgdGhlIGNvbnRlbnQgZm9yIHRoZSBhbm5vdGF0aW9uIGluIG1hcHMgY29tcG9uZW50LlxuICAgICAqL1xuICAgIEBDb250ZW50Q2hpbGQoJ2NvbnRlbnQnKVxuICAgIEBUZW1wbGF0ZSgpXG4gICAgcHVibGljIGNvbnRlbnQ6IGFueTtcblxuICAgIGNvbnN0cnVjdG9yKHByaXZhdGUgdmlld0NvbnRhaW5lclJlZjpWaWV3Q29udGFpbmVyUmVmKSB7XG4gICAgICAgIHN1cGVyKCk7XG4gICAgICAgIHNldFZhbHVlKCdjdXJyZW50SW5zdGFuY2UnLCB0aGlzLCB0aGlzLnZpZXdDb250YWluZXJSZWYpO1xuICAgICAgICB0aGlzLnJlZ2lzdGVyRXZlbnRzKG91dHB1dHMpO1xuICAgICAgICB0aGlzLmRpcmVjdGl2ZVByb3BMaXN0ID0gaW5wdXQ7XG4gICAgfVxufVxuXG4vKipcbiAqIEFubm90YXRpb24gQXJyYXkgRGlyZWN0aXZlXG4gKiBAcHJpdmF0ZVxuICovXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ2VqLW1hcHM+ZS1tYXBzLWFubm90YXRpb25zJyxcbiAgICBxdWVyaWVzOiB7XG4gICAgICAgIGNoaWxkcmVuOiBuZXcgQ29udGVudENoaWxkcmVuKEFubm90YXRpb25EaXJlY3RpdmUpXG4gICAgfSxcbn0pXG5leHBvcnQgY2xhc3MgQW5ub3RhdGlvbnNEaXJlY3RpdmUgZXh0ZW5kcyBBcnJheUJhc2U8QW5ub3RhdGlvbnNEaXJlY3RpdmU+IHtcbiAgICBjb25zdHJ1Y3RvcigpIHtcbiAgICAgICAgc3VwZXIoJ2Fubm90YXRpb25zJyk7XG4gICAgfVxufSJdfQ==
|