@syncfusion/ej2-angular-maps 20.4.54 → 21.1.35
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/esm2020/src/maps/annotations.directive.mjs +2 -2
- package/esm2020/src/maps/bubblesettings.directive.mjs +2 -2
- package/esm2020/src/maps/colormapping.directive.mjs +2 -2
- package/esm2020/src/maps/initialshapeselection.directive.mjs +2 -2
- package/esm2020/src/maps/layers.directive.mjs +2 -2
- package/esm2020/src/maps/maps.component.mjs +5 -4
- package/esm2020/src/maps/markersettings.directive.mjs +4 -4
- package/esm2020/src/maps/navigationlinesettings.directive.mjs +2 -2
- package/fesm2015/syncfusion-ej2-angular-maps.mjs +13 -12
- package/fesm2015/syncfusion-ej2-angular-maps.mjs.map +1 -1
- package/fesm2020/syncfusion-ej2-angular-maps.mjs +13 -12
- package/fesm2020/syncfusion-ej2-angular-maps.mjs.map +1 -1
- package/package.json +9 -9
- 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 -7
- package/src/maps/bubblesettings.directive.d.ts +20 -20
- package/src/maps/colormapping.directive.d.ts +9 -9
- package/src/maps/initialshapeselection.directive.d.ts +3 -3
- package/src/maps/layers.directive.d.ts +33 -28
- package/src/maps/maps.component.d.ts +5 -2
- package/src/maps/markersettings.directive.d.ts +33 -27
- package/src/maps/navigationlinesettings.directive.d.ts +11 -10
|
@@ -2,7 +2,7 @@ import { ViewContainerRef } from '@angular/core';
|
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
5
|
+
* Represents the directive to define the bubble color mapping in the maps.
|
|
6
6
|
* ```html
|
|
7
7
|
* <e-layers>
|
|
8
8
|
* <e-layer>
|
|
@@ -20,44 +20,44 @@ export declare class ColorMappingDirective extends ComplexBase<ColorMappingDirec
|
|
|
20
20
|
private viewContainerRef;
|
|
21
21
|
directivePropList: any;
|
|
22
22
|
/**
|
|
23
|
-
*
|
|
23
|
+
* Gets or sets the color for the color-mapping in maps.
|
|
24
24
|
* @default null
|
|
25
25
|
*/
|
|
26
26
|
color: any;
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
28
|
+
* Gets or sets the value from where the range for the color-mapping starts.
|
|
29
29
|
* @aspdefaultvalueignore
|
|
30
30
|
* @default null
|
|
31
31
|
*/
|
|
32
32
|
from: any;
|
|
33
33
|
/**
|
|
34
|
-
*
|
|
34
|
+
* Gets or sets the label for the color-mapping to display in the legend item text.
|
|
35
35
|
* @default null
|
|
36
36
|
*/
|
|
37
37
|
label: any;
|
|
38
38
|
/**
|
|
39
|
-
*
|
|
39
|
+
* Gets or sets the maximum opacity for the color-mapping in maps.
|
|
40
40
|
* @default null
|
|
41
41
|
*/
|
|
42
42
|
maxOpacity: any;
|
|
43
43
|
/**
|
|
44
|
-
*
|
|
44
|
+
* Gets or sets the minimum opacity for the color-mapping in maps.
|
|
45
45
|
* @default null
|
|
46
46
|
*/
|
|
47
47
|
minOpacity: any;
|
|
48
48
|
/**
|
|
49
|
-
* Enables or disables the visibility
|
|
49
|
+
* Enables or disables the visibility of legend for the corresponding color-mapped shapes in maps.
|
|
50
50
|
* @default true
|
|
51
51
|
*/
|
|
52
52
|
showLegend: any;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* Gets or sets the value to where the range for the color-mapping ends.
|
|
55
55
|
* @aspdefaultvalueignore
|
|
56
56
|
* @default null
|
|
57
57
|
*/
|
|
58
58
|
to: any;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* Gets or sets the value from the data source to map the corresponding colors to the shapes.
|
|
61
61
|
* @default null
|
|
62
62
|
*/
|
|
63
63
|
value: any;
|
|
@@ -2,7 +2,7 @@ import { ViewContainerRef } from '@angular/core';
|
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
5
|
+
* Represents the directive to configure the selection of the shapes when the maps is initially rendered.
|
|
6
6
|
* ```html
|
|
7
7
|
* <e-layers>
|
|
8
8
|
* <e-layer>
|
|
@@ -18,12 +18,12 @@ export declare class InitialShapeSelectionDirective extends ComplexBase<InitialS
|
|
|
18
18
|
private viewContainerRef;
|
|
19
19
|
directivePropList: any;
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
21
|
+
* Gets or sets the property name from the data source in maps.
|
|
22
22
|
* @default null
|
|
23
23
|
*/
|
|
24
24
|
shapePath: any;
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* Gets or sets the value from the data source which is bound to the shape in maps.
|
|
27
27
|
* @default null
|
|
28
28
|
*/
|
|
29
29
|
shapeValue: any;
|
|
@@ -2,7 +2,7 @@ import { ViewContainerRef } from '@angular/core';
|
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
5
|
+
* Represents the directive to define the layer of the maps.
|
|
6
6
|
* ```html
|
|
7
7
|
* <e-layers>
|
|
8
8
|
* <e-layer></e-layer>
|
|
@@ -18,126 +18,131 @@ export declare class LayerDirective extends ComplexBase<LayerDirective> {
|
|
|
18
18
|
childNavigationLineSettings: any;
|
|
19
19
|
tags: string[];
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
21
|
+
* Gets or sets the type of the layer in maps. There are two types: Layer and SubLayer.
|
|
22
22
|
* @default Layer
|
|
23
23
|
*/
|
|
24
24
|
type: any;
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* Gets or sets the duration of the animation of layers when the zooming is performed in maps.
|
|
27
27
|
* @default 0
|
|
28
28
|
*/
|
|
29
29
|
animationDuration: any;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
32
|
-
* then the map will
|
|
31
|
+
* 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",
|
|
32
|
+
* then the map will be rendered based on the provided shape data since the default layer type will be set as "Geometry".
|
|
33
33
|
* @deprecated
|
|
34
34
|
* @default Aerial
|
|
35
35
|
*/
|
|
36
36
|
bingMapType: any;
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* Gets or sets the options for customizing the bubbles in maps.
|
|
39
39
|
*/
|
|
40
40
|
bubbleSettings: any;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* Gets or sets the options for customizing the data labels in maps.
|
|
43
43
|
*/
|
|
44
44
|
dataLabelSettings: any;
|
|
45
45
|
/**
|
|
46
|
-
*
|
|
47
|
-
*
|
|
46
|
+
* Gets or sets the data source for the layer.
|
|
47
|
+
* The data bound to the shapes using data source can be used to display the tooltip, marker, and bubble.
|
|
48
48
|
* @isobservable true
|
|
49
49
|
* @default []
|
|
50
50
|
*/
|
|
51
51
|
dataSource: any;
|
|
52
52
|
/**
|
|
53
|
-
*
|
|
53
|
+
* Gets or sets the geometry type for the layer in maps. There are two types: Geographic and Normal.
|
|
54
|
+
* * Geographic type renders the shape maps with geographical coordinate system.
|
|
55
|
+
* * Normal type renders the shape maps using default coordinate system.
|
|
54
56
|
* @default Geographic
|
|
55
57
|
*/
|
|
56
58
|
geometryType: any;
|
|
57
59
|
/**
|
|
58
|
-
*
|
|
60
|
+
* Gets or sets the options for customizing the shapes when the mouse hovers over maps.
|
|
59
61
|
*/
|
|
60
62
|
highlightSettings: any;
|
|
61
63
|
/**
|
|
62
|
-
*
|
|
64
|
+
* Gets or sets the settings for the shapes to be selected when the maps rendering initially.
|
|
65
|
+
* The initial selection of shapes will be performed only when the selection functionality of layer is enabled.
|
|
63
66
|
*/
|
|
64
67
|
initialShapeSelection: any;
|
|
65
68
|
/**
|
|
66
|
-
*
|
|
69
|
+
* Gets or sets the key for the online map provider to render in the layer of the maps.
|
|
67
70
|
* @deprecated
|
|
68
71
|
* @default ''
|
|
69
72
|
*/
|
|
70
73
|
key: any;
|
|
71
74
|
/**
|
|
72
|
-
*
|
|
75
|
+
* 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
76
|
* then map will render based on the provided layer type.
|
|
74
77
|
* @deprecated
|
|
75
78
|
* @default Geometry
|
|
76
79
|
*/
|
|
77
80
|
layerType: any;
|
|
78
81
|
/**
|
|
79
|
-
*
|
|
82
|
+
* Gets or sets the options for customizing the cluster of markers in maps.
|
|
80
83
|
*/
|
|
81
84
|
markerClusterSettings: any;
|
|
82
85
|
/**
|
|
83
|
-
*
|
|
86
|
+
* Gets or sets the options for customizing the markers in maps.
|
|
84
87
|
*/
|
|
85
88
|
markerSettings: any;
|
|
86
89
|
/**
|
|
87
|
-
*
|
|
90
|
+
* Gets or sets the options for customizing the navigation lines in maps.
|
|
88
91
|
*/
|
|
89
92
|
navigationLineSettings: any;
|
|
90
93
|
/**
|
|
91
|
-
*
|
|
94
|
+
* Gets or sets the query to select particular data from the layer data source.
|
|
92
95
|
* This property is applicable only when the data source is created by data manager.
|
|
93
96
|
* @default null
|
|
94
97
|
*/
|
|
95
98
|
query: any;
|
|
96
99
|
/**
|
|
97
|
-
*
|
|
100
|
+
* Gets or sets the options for customizing the shapes when clicking on the shapes in maps.
|
|
98
101
|
*/
|
|
99
102
|
selectionSettings: any;
|
|
100
103
|
/**
|
|
101
|
-
*
|
|
104
|
+
* Gets or sets the data for the maps to render.
|
|
105
|
+
* The data is normally JSON object with GeoJSON format that defines the shapes and geometries of the map.
|
|
102
106
|
* @isobservable true
|
|
103
107
|
* @default null
|
|
104
108
|
*/
|
|
105
109
|
shapeData: any;
|
|
106
110
|
/**
|
|
107
|
-
*
|
|
111
|
+
* Gets or sets the field name from the GeoJSON data to map the shape to the data defined in the layer data source.
|
|
108
112
|
* @default 'name'
|
|
109
113
|
*/
|
|
110
114
|
shapeDataPath: any;
|
|
111
115
|
/**
|
|
112
|
-
*
|
|
116
|
+
* Gets or sets the field name from the data source to map the shape to the data defined in the layer data source.
|
|
113
117
|
* @default 'name'
|
|
114
118
|
*/
|
|
115
119
|
shapePropertyPath: any;
|
|
116
120
|
/**
|
|
117
|
-
*
|
|
121
|
+
* Gets or sets the options to customize the shape of the maps.
|
|
118
122
|
*/
|
|
119
123
|
shapeSettings: any;
|
|
120
124
|
/**
|
|
121
|
-
*
|
|
125
|
+
* Gets or sets the type of the static maps.
|
|
122
126
|
* @deprecated
|
|
123
127
|
* @default RoadMap
|
|
124
128
|
*/
|
|
125
129
|
staticMapType: any;
|
|
126
130
|
/**
|
|
127
|
-
*
|
|
131
|
+
* Gets or sets the options for customizing the toggle state of shapes when selecting the legend in maps.
|
|
128
132
|
*/
|
|
129
133
|
toggleLegendSettings: any;
|
|
130
134
|
/**
|
|
131
|
-
*
|
|
135
|
+
* Gets or sets the options for customizing the tooltip of the layers in maps.
|
|
132
136
|
*/
|
|
133
137
|
tooltipSettings: any;
|
|
134
138
|
/**
|
|
135
|
-
*
|
|
139
|
+
* Gets or sets the URL of the online map providers.
|
|
140
|
+
* The online map providers will be rendered only when the shape data is not set and layer type is set with default value.
|
|
136
141
|
* @default ''
|
|
137
142
|
*/
|
|
138
143
|
urlTemplate: any;
|
|
139
144
|
/**
|
|
140
|
-
* Enables or disables the visibility
|
|
145
|
+
* Enables or disables the visibility of the layers in maps.
|
|
141
146
|
* @default true
|
|
142
147
|
*/
|
|
143
148
|
visible: any;
|
|
@@ -8,7 +8,8 @@ export declare const inputs: string[];
|
|
|
8
8
|
export declare const outputs: string[];
|
|
9
9
|
export declare const twoWays: string[];
|
|
10
10
|
/**
|
|
11
|
-
* Represents Maps
|
|
11
|
+
* Represents the Angular Maps component.
|
|
12
|
+
* 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
13
|
* ```html
|
|
13
14
|
* <ej-maps></ej-maps>
|
|
14
15
|
* ```
|
|
@@ -39,6 +40,8 @@ export declare class MapsComponent extends Maps implements IComponentBase {
|
|
|
39
40
|
markerClusterClick: any;
|
|
40
41
|
markerClusterMouseMove: any;
|
|
41
42
|
markerClusterRendering: any;
|
|
43
|
+
markerDragEnd: any;
|
|
44
|
+
markerDragStart: any;
|
|
42
45
|
markerMouseMove: any;
|
|
43
46
|
markerRendering: any;
|
|
44
47
|
onclick: any;
|
|
@@ -63,5 +66,5 @@ export declare class MapsComponent extends Maps implements IComponentBase {
|
|
|
63
66
|
registerEvents: (eventList: string[]) => void;
|
|
64
67
|
addTwoWay: (propList: string[]) => void;
|
|
65
68
|
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>;
|
|
69
|
+
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"; "markerDragEnd": "markerDragEnd"; "markerDragStart": "markerDragStart"; "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
70
|
}
|
|
@@ -2,7 +2,7 @@ import { ViewContainerRef } from '@angular/core';
|
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
5
|
+
* Represents the directive to define the markers in the maps.
|
|
6
6
|
* ```html
|
|
7
7
|
* <e-layers>
|
|
8
8
|
* <e-layer>
|
|
@@ -18,30 +18,30 @@ export declare class MarkerDirective extends ComplexBase<MarkerDirective> {
|
|
|
18
18
|
private viewContainerRef;
|
|
19
19
|
directivePropList: any;
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
21
|
+
* Gets or sets the delay time for the animation in marker.
|
|
22
22
|
* @default 0
|
|
23
23
|
*/
|
|
24
24
|
animationDelay: any;
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* Gets or sets the duration time for animating the marker.
|
|
27
27
|
* @default 1000
|
|
28
28
|
*/
|
|
29
29
|
animationDuration: any;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* Gets or sets the options for customizing the style properties of the border of the marker in maps.
|
|
32
32
|
*/
|
|
33
33
|
border: any;
|
|
34
34
|
/**
|
|
35
|
-
*
|
|
35
|
+
* Gets or sets the field name from the marker data source based on which the color is applied for the marker.
|
|
36
36
|
* @default null
|
|
37
37
|
*/
|
|
38
38
|
colorValuePath: any;
|
|
39
39
|
/**
|
|
40
|
-
*
|
|
40
|
+
* Gets or sets the dash-array for the marker.
|
|
41
41
|
*/
|
|
42
42
|
dashArray: any;
|
|
43
43
|
/**
|
|
44
|
-
*
|
|
44
|
+
* Gets or sets the data source for the marker.
|
|
45
45
|
* The data source for the marker will contain latitude and longitude values to specify the location
|
|
46
46
|
* of the marker.
|
|
47
47
|
* The data source can contain data such as color, shape, and other details that can be bound to the color, shape,
|
|
@@ -51,97 +51,103 @@ export declare class MarkerDirective extends ComplexBase<MarkerDirective> {
|
|
|
51
51
|
*/
|
|
52
52
|
dataSource: any;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* Enables or disables marker drag and drop functionality at any location on the map.
|
|
55
|
+
* @default false
|
|
56
|
+
*/
|
|
57
|
+
enableDrag: any;
|
|
58
|
+
/**
|
|
59
|
+
* Gets or sets the color for the marker in maps.
|
|
55
60
|
* @default '#FF471A'
|
|
56
61
|
*/
|
|
57
62
|
fill: any;
|
|
58
63
|
/**
|
|
59
|
-
*
|
|
64
|
+
* Gets or sets the height of the marker in maps.
|
|
60
65
|
* @default 10
|
|
61
66
|
*/
|
|
62
67
|
height: any;
|
|
63
68
|
/**
|
|
64
|
-
*
|
|
69
|
+
* Gets or sets the options to customize the marker when the mouse hovers over the markers in maps.
|
|
65
70
|
*/
|
|
66
71
|
highlightSettings: any;
|
|
67
72
|
/**
|
|
68
|
-
*
|
|
73
|
+
* 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
74
|
*/
|
|
70
75
|
imageUrl: any;
|
|
71
76
|
/**
|
|
72
|
-
*
|
|
77
|
+
* 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
78
|
* @default null
|
|
74
79
|
*/
|
|
75
80
|
imageUrlValuePath: any;
|
|
76
81
|
/**
|
|
77
|
-
*
|
|
82
|
+
* Gets or sets the options to select the markers at the initial rendering time of the maps.
|
|
83
|
+
* The initial selection of markers will be performed only when the selection functionality of marker is enabled.
|
|
78
84
|
*/
|
|
79
85
|
initialMarkerSelection: any;
|
|
80
86
|
/**
|
|
81
|
-
* Defines the
|
|
87
|
+
* Defines the field name from the marker data source for setting latitude for a set of markers.
|
|
82
88
|
*/
|
|
83
89
|
latitudeValuePath: any;
|
|
84
90
|
/**
|
|
85
|
-
*
|
|
91
|
+
* Gets or sets the field name from the marker data source to render legend item text for the marker legend.
|
|
86
92
|
* @default ''
|
|
87
93
|
*/
|
|
88
94
|
legendText: any;
|
|
89
95
|
/**
|
|
90
|
-
* Defines the
|
|
96
|
+
* Defines the field name from the marker data source for setting longitude for a set of markers.
|
|
91
97
|
*/
|
|
92
98
|
longitudeValuePath: any;
|
|
93
99
|
/**
|
|
94
|
-
*
|
|
100
|
+
* Gets or sets the offset value from which the marker must be rendered from the intended position.
|
|
95
101
|
*/
|
|
96
102
|
offset: any;
|
|
97
103
|
/**
|
|
98
|
-
*
|
|
104
|
+
* Gets or sets the opacity for the marker in maps.
|
|
99
105
|
* @default 1
|
|
100
106
|
*/
|
|
101
107
|
opacity: any;
|
|
102
108
|
/**
|
|
103
|
-
*
|
|
109
|
+
* Gets or sets the query to select particular data from the marker data source.
|
|
104
110
|
* This property is applicable only when the data source is created by data manager.
|
|
105
111
|
* @default null
|
|
106
112
|
*/
|
|
107
113
|
query: any;
|
|
108
114
|
/**
|
|
109
|
-
*
|
|
115
|
+
* Gets or sets the options to customize the marker while selecting the marker in maps.
|
|
110
116
|
*/
|
|
111
117
|
selectionSettings: any;
|
|
112
118
|
/**
|
|
113
|
-
*
|
|
119
|
+
* Gets or sets the shape of the marker in maps.
|
|
114
120
|
* @default Balloon
|
|
115
121
|
*/
|
|
116
122
|
shape: any;
|
|
117
123
|
/**
|
|
118
|
-
*
|
|
124
|
+
* Gets or sets the field name from the marker data source based on which the shape for individual markers are set.
|
|
119
125
|
* @default null
|
|
120
126
|
*/
|
|
121
127
|
shapeValuePath: any;
|
|
122
128
|
/**
|
|
123
|
-
*
|
|
129
|
+
* Gets or sets the options to customize the tooltip of the marker in maps.
|
|
124
130
|
*/
|
|
125
131
|
tooltipSettings: any;
|
|
126
132
|
/**
|
|
127
|
-
* Enables or disables the visibility
|
|
133
|
+
* Enables or disables the visibility of the markers in maps.
|
|
128
134
|
* @default false
|
|
129
135
|
*/
|
|
130
136
|
visible: any;
|
|
131
137
|
/**
|
|
132
|
-
*
|
|
138
|
+
* Gets or sets the width of the marker in maps.
|
|
133
139
|
* @default 10
|
|
134
140
|
*/
|
|
135
141
|
width: any;
|
|
136
142
|
/**
|
|
137
|
-
*
|
|
143
|
+
* Gets or sets the template for the marker to render custom elements.
|
|
138
144
|
* @default null
|
|
139
145
|
*/
|
|
140
146
|
template: any;
|
|
141
147
|
tooltipSettings_template: any;
|
|
142
148
|
constructor(viewContainerRef: ViewContainerRef);
|
|
143
149
|
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"]>;
|
|
150
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MarkerDirective, "e-layer>e-markerSettings>e-markerSetting", never, { "animationDelay": "animationDelay"; "animationDuration": "animationDuration"; "border": "border"; "colorValuePath": "colorValuePath"; "dashArray": "dashArray"; "dataSource": "dataSource"; "enableDrag": "enableDrag"; "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
151
|
}
|
|
146
152
|
/**
|
|
147
153
|
* Marker Array Directive
|
|
@@ -2,7 +2,7 @@ import { ViewContainerRef } from '@angular/core';
|
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
5
|
+
* Represents the directive to define the navigation lines in the maps.
|
|
6
6
|
* ```html
|
|
7
7
|
* <e-layers>
|
|
8
8
|
* <e-layer>
|
|
@@ -18,39 +18,40 @@ export declare class NavigationLineDirective extends ComplexBase<NavigationLineD
|
|
|
18
18
|
private viewContainerRef;
|
|
19
19
|
directivePropList: any;
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
21
|
+
* Gets or sets the angle of the curve connecting different locations in maps.
|
|
22
22
|
* @default 0
|
|
23
23
|
*/
|
|
24
24
|
angle: any;
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* Gets or sets the options to customize the arrow for the navigation line in maps.
|
|
27
27
|
*/
|
|
28
28
|
arrowSettings: any;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* Gets or sets the color for the navigation lines in maps.
|
|
31
|
+
* @default 'black'
|
|
31
32
|
*/
|
|
32
33
|
color: any;
|
|
33
34
|
/**
|
|
34
|
-
*
|
|
35
|
+
* Gets or sets the dash-array for the navigation lines drawn in maps.
|
|
35
36
|
* @default ''
|
|
36
37
|
*/
|
|
37
38
|
dashArray: any;
|
|
38
39
|
/**
|
|
39
|
-
*
|
|
40
|
+
* Gets or sets the highlight settings of the navigation line in maps.
|
|
40
41
|
*/
|
|
41
42
|
highlightSettings: any;
|
|
42
43
|
/**
|
|
43
|
-
*
|
|
44
|
+
* Gets or sets the latitude value for the navigation lines to be drawn in maps.
|
|
44
45
|
* @default []
|
|
45
46
|
*/
|
|
46
47
|
latitude: any;
|
|
47
48
|
/**
|
|
48
|
-
*
|
|
49
|
+
* Gets or sets the longitude for the navigation lines to be drawn in maps.
|
|
49
50
|
* @default []
|
|
50
51
|
*/
|
|
51
52
|
longitude: any;
|
|
52
53
|
/**
|
|
53
|
-
*
|
|
54
|
+
* Gets or sets the selection settings of the navigation line in maps.
|
|
54
55
|
*/
|
|
55
56
|
selectionSettings: any;
|
|
56
57
|
/**
|
|
@@ -59,7 +60,7 @@ export declare class NavigationLineDirective extends ComplexBase<NavigationLineD
|
|
|
59
60
|
*/
|
|
60
61
|
visible: any;
|
|
61
62
|
/**
|
|
62
|
-
*
|
|
63
|
+
* Gets or sets the width of the navigation lines in maps.
|
|
63
64
|
* @default 1
|
|
64
65
|
*/
|
|
65
66
|
width: any;
|