@mescius/wijmo.angular2legacy.chart.map 5.20232.939
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/COMMERCIAL-LICENSE.html +485 -0
- package/README.md +363 -0
- package/es2015-commonjs.js +14 -0
- package/es2015-esm.js +14 -0
- package/es5-esm.js +14 -0
- package/index.d.ts +386 -0
- package/index.js +14 -0
- package/index.metadata.json +1 -0
- package/package.json +46 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,386 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
*
|
|
3
|
+
* Wijmo Library 5.20232.939
|
|
4
|
+
* https://developer.mescius.com/wijmo
|
|
5
|
+
*
|
|
6
|
+
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
7
|
+
*
|
|
8
|
+
* Licensed under the End-User License Agreement For MESCIUS Wijmo Software.
|
|
9
|
+
* us.sales@mescius.com
|
|
10
|
+
* https://developer.mescius.com/wijmo/licensing
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* {@module wijmo.angular2legacy.chart.map}
|
|
15
|
+
* Contains Angular 2 components for the <b>wijmo.chart.map</b> module.
|
|
16
|
+
*
|
|
17
|
+
* <b>wijmo.angular2legacy.chart.map</b> is an external TypeScript module that can be imported to your code
|
|
18
|
+
* using its ambient module name. For example:
|
|
19
|
+
*
|
|
20
|
+
*
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare var ___keepComment: any;
|
|
27
|
+
import { EventEmitter, AfterViewInit, ElementRef, Injector, OnInit, OnDestroy } from '@angular/core';
|
|
28
|
+
import { IWjComponentMetadata, IWjComponentMeta } from '@grapecity/wijmo.angular2legacy.directivebase';
|
|
29
|
+
import * as wjcChartMap from '@grapecity/wijmo.chart.map';
|
|
30
|
+
declare var wjFlexMapMeta: IWjComponentMeta;
|
|
31
|
+
export { wjFlexMapMeta };
|
|
32
|
+
/**
|
|
33
|
+
* Angular 2 component for the {@link wijmo.chart.map.FlexMap} control.
|
|
34
|
+
*
|
|
35
|
+
* Use the <b>wj-flex-map</b> component to add <b>FlexMap</b> controls to your
|
|
36
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
37
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
38
|
+
*
|
|
39
|
+
* The <b>WjFlexMap</b> component is derived from the <b>FlexMap</b> control and
|
|
40
|
+
* inherits all its properties, events and methods.
|
|
41
|
+
*
|
|
42
|
+
* The <b>wj-flex-map</b> component may contain the following child components:
|
|
43
|
+
* {@link wijmo.angular2legacy.chart.WjFlexChartLegend}
|
|
44
|
+
* , {@link wijmo.angular2legacy.chart.map.WjScatterMapLayer}
|
|
45
|
+
* , {@link wijmo.angular2legacy.chart.map.WjGeoMapLayer}
|
|
46
|
+
* and {@link wijmo.angular2legacy.chart.map.WjGeoGridLayer}.
|
|
47
|
+
*/
|
|
48
|
+
export declare class WjFlexMap extends wjcChartMap.FlexMap implements OnInit, OnDestroy, AfterViewInit {
|
|
49
|
+
static readonly meta: IWjComponentMetadata;
|
|
50
|
+
private _wjBehaviour;
|
|
51
|
+
/**
|
|
52
|
+
* Indicates whether the component has been initialized by Angular.
|
|
53
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
54
|
+
*/
|
|
55
|
+
isInitialized: boolean;
|
|
56
|
+
/**
|
|
57
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
58
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
59
|
+
*/
|
|
60
|
+
initialized: EventEmitter<any>;
|
|
61
|
+
/**
|
|
62
|
+
* Defines a name of a property represented by [(ngModel)] directive (if specified).
|
|
63
|
+
* Default value is ''.
|
|
64
|
+
*/
|
|
65
|
+
wjModelProperty: string;
|
|
66
|
+
/**
|
|
67
|
+
* Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
|
|
68
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
69
|
+
* In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
|
|
70
|
+
*/
|
|
71
|
+
gotFocusNg: EventEmitter<any>;
|
|
72
|
+
/**
|
|
73
|
+
* Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
|
|
74
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
75
|
+
* In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
|
|
76
|
+
*/
|
|
77
|
+
lostFocusNg: EventEmitter<any>;
|
|
78
|
+
/**
|
|
79
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
|
|
80
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
81
|
+
* In template bindings use the conventional <b>refreshing</b> Wijmo event name.
|
|
82
|
+
*/
|
|
83
|
+
refreshingNg: EventEmitter<any>;
|
|
84
|
+
/**
|
|
85
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
|
|
86
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
87
|
+
* In template bindings use the conventional <b>refreshed</b> Wijmo event name.
|
|
88
|
+
*/
|
|
89
|
+
refreshedNg: EventEmitter<any>;
|
|
90
|
+
/**
|
|
91
|
+
* Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
|
|
92
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
93
|
+
* In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
|
|
94
|
+
*/
|
|
95
|
+
invalidInputNg: EventEmitter<any>;
|
|
96
|
+
/**
|
|
97
|
+
* Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
|
|
98
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
99
|
+
* In template bindings use the conventional <b>rendering</b> Wijmo event name.
|
|
100
|
+
*/
|
|
101
|
+
renderingNg: EventEmitter<any>;
|
|
102
|
+
/**
|
|
103
|
+
* Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
|
|
104
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
105
|
+
* In template bindings use the conventional <b>rendered</b> Wijmo event name.
|
|
106
|
+
*/
|
|
107
|
+
renderedNg: EventEmitter<any>;
|
|
108
|
+
/**
|
|
109
|
+
* Angular (EventEmitter) version of the Wijmo <b>selectionChanged</b> event for programmatic access.
|
|
110
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
111
|
+
* In template bindings use the conventional <b>selectionChanged</b> Wijmo event name.
|
|
112
|
+
*/
|
|
113
|
+
selectionChangedNg: EventEmitter<any>;
|
|
114
|
+
/**
|
|
115
|
+
* Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanging</b> event for programmatic access.
|
|
116
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
117
|
+
* In template bindings use the conventional <b>itemsSourceChanging</b> Wijmo event name.
|
|
118
|
+
*/
|
|
119
|
+
itemsSourceChangingNg: EventEmitter<any>;
|
|
120
|
+
/**
|
|
121
|
+
* Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanged</b> event for programmatic access.
|
|
122
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
123
|
+
* In template bindings use the conventional <b>itemsSourceChanged</b> Wijmo event name.
|
|
124
|
+
*/
|
|
125
|
+
itemsSourceChangedNg: EventEmitter<any>;
|
|
126
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
127
|
+
/**
|
|
128
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
129
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
130
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
131
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
132
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
133
|
+
*/
|
|
134
|
+
created(): void;
|
|
135
|
+
ngOnInit(): void;
|
|
136
|
+
ngAfterViewInit(): void;
|
|
137
|
+
ngOnDestroy(): void;
|
|
138
|
+
addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
|
|
139
|
+
tooltipContent: any;
|
|
140
|
+
}
|
|
141
|
+
declare var wjScatterMapLayerMeta: IWjComponentMeta;
|
|
142
|
+
export { wjScatterMapLayerMeta };
|
|
143
|
+
/**
|
|
144
|
+
* Angular 2 component for the {@link wijmo.chart.map.ScatterMapLayer} class.
|
|
145
|
+
*
|
|
146
|
+
* The <b>wj-scatter-map-layer</b> component must be
|
|
147
|
+
* contained in a {@link wijmo.angular2legacy.chart.map.WjFlexMap} component.
|
|
148
|
+
*
|
|
149
|
+
* Use the <b>wj-scatter-map-layer</b> component to add <b>ScatterMapLayer</b> controls to your
|
|
150
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
151
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
152
|
+
*
|
|
153
|
+
* The <b>WjScatterMapLayer</b> component is derived from the <b>ScatterMapLayer</b> class and
|
|
154
|
+
* inherits all its properties, events and methods.
|
|
155
|
+
*
|
|
156
|
+
* The <b>wj-scatter-map-layer</b> component may contain a {@link wijmo.angular2legacy.chart.map.WjColorScale} child component.
|
|
157
|
+
*/
|
|
158
|
+
export declare class WjScatterMapLayer extends wjcChartMap.ScatterMapLayer implements OnInit, OnDestroy, AfterViewInit {
|
|
159
|
+
static readonly meta: IWjComponentMetadata;
|
|
160
|
+
private _wjBehaviour;
|
|
161
|
+
/**
|
|
162
|
+
* Indicates whether the component has been initialized by Angular.
|
|
163
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
164
|
+
*/
|
|
165
|
+
isInitialized: boolean;
|
|
166
|
+
/**
|
|
167
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
168
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
169
|
+
*/
|
|
170
|
+
initialized: EventEmitter<any>;
|
|
171
|
+
/**
|
|
172
|
+
* Gets or sets a name of a property that this component is assigned to.
|
|
173
|
+
* Default value is 'layers'.
|
|
174
|
+
*/
|
|
175
|
+
wjProperty: string;
|
|
176
|
+
/**
|
|
177
|
+
* Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
|
|
178
|
+
* See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
|
|
179
|
+
*/
|
|
180
|
+
asyncBindings: boolean;
|
|
181
|
+
/**
|
|
182
|
+
* Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanged</b> event for programmatic access.
|
|
183
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
184
|
+
* In template bindings use the conventional <b>itemsSourceChanged</b> Wijmo event name.
|
|
185
|
+
*/
|
|
186
|
+
itemsSourceChangedNg: EventEmitter<any>;
|
|
187
|
+
/**
|
|
188
|
+
* This event is used to implement two-way binding to the <b>itemsSource</b> property.
|
|
189
|
+
* It's triggered when the property value changes, with the event argument holding the new property value.
|
|
190
|
+
* You can bind handlers to this event in templates using the <b>itemsSourceChange</b> event name.
|
|
191
|
+
*/
|
|
192
|
+
itemsSourceChangePC: EventEmitter<any>;
|
|
193
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
194
|
+
/**
|
|
195
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
196
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
197
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
198
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
199
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
200
|
+
*/
|
|
201
|
+
created(): void;
|
|
202
|
+
ngOnInit(): void;
|
|
203
|
+
ngAfterViewInit(): void;
|
|
204
|
+
ngOnDestroy(): void;
|
|
205
|
+
}
|
|
206
|
+
declare var wjGeoMapLayerMeta: IWjComponentMeta;
|
|
207
|
+
export { wjGeoMapLayerMeta };
|
|
208
|
+
/**
|
|
209
|
+
* Angular 2 component for the {@link wijmo.chart.map.GeoMapLayer} class.
|
|
210
|
+
*
|
|
211
|
+
* The <b>wj-geo-map-layer</b> component must be
|
|
212
|
+
* contained in a {@link wijmo.angular2legacy.chart.map.WjFlexMap} component.
|
|
213
|
+
*
|
|
214
|
+
* Use the <b>wj-geo-map-layer</b> component to add <b>GeoMapLayer</b> controls to your
|
|
215
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
216
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
217
|
+
*
|
|
218
|
+
* The <b>WjGeoMapLayer</b> component is derived from the <b>GeoMapLayer</b> class and
|
|
219
|
+
* inherits all its properties, events and methods.
|
|
220
|
+
*
|
|
221
|
+
* The <b>wj-geo-map-layer</b> component may contain a {@link wijmo.angular2legacy.chart.map.WjColorScale} child component.
|
|
222
|
+
*/
|
|
223
|
+
export declare class WjGeoMapLayer extends wjcChartMap.GeoMapLayer implements OnInit, OnDestroy, AfterViewInit {
|
|
224
|
+
static readonly meta: IWjComponentMetadata;
|
|
225
|
+
private _wjBehaviour;
|
|
226
|
+
/**
|
|
227
|
+
* Indicates whether the component has been initialized by Angular.
|
|
228
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
229
|
+
*/
|
|
230
|
+
isInitialized: boolean;
|
|
231
|
+
/**
|
|
232
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
233
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
234
|
+
*/
|
|
235
|
+
initialized: EventEmitter<any>;
|
|
236
|
+
/**
|
|
237
|
+
* Gets or sets a name of a property that this component is assigned to.
|
|
238
|
+
* Default value is 'layers'.
|
|
239
|
+
*/
|
|
240
|
+
wjProperty: string;
|
|
241
|
+
/**
|
|
242
|
+
* Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
|
|
243
|
+
* See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
|
|
244
|
+
*/
|
|
245
|
+
asyncBindings: boolean;
|
|
246
|
+
/**
|
|
247
|
+
* Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanged</b> event for programmatic access.
|
|
248
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
249
|
+
* In template bindings use the conventional <b>itemsSourceChanged</b> Wijmo event name.
|
|
250
|
+
*/
|
|
251
|
+
itemsSourceChangedNg: EventEmitter<any>;
|
|
252
|
+
/**
|
|
253
|
+
* This event is used to implement two-way binding to the <b>itemsSource</b> property.
|
|
254
|
+
* It's triggered when the property value changes, with the event argument holding the new property value.
|
|
255
|
+
* You can bind handlers to this event in templates using the <b>itemsSourceChange</b> event name.
|
|
256
|
+
*/
|
|
257
|
+
itemsSourceChangePC: EventEmitter<any>;
|
|
258
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
259
|
+
/**
|
|
260
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
261
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
262
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
263
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
264
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
265
|
+
*/
|
|
266
|
+
created(): void;
|
|
267
|
+
ngOnInit(): void;
|
|
268
|
+
ngAfterViewInit(): void;
|
|
269
|
+
ngOnDestroy(): void;
|
|
270
|
+
}
|
|
271
|
+
declare var wjGeoGridLayerMeta: IWjComponentMeta;
|
|
272
|
+
export { wjGeoGridLayerMeta };
|
|
273
|
+
/**
|
|
274
|
+
* Angular 2 component for the {@link wijmo.chart.map.GeoGridLayer} class.
|
|
275
|
+
*
|
|
276
|
+
* The <b>wj-geo-grid-layer</b> component must be
|
|
277
|
+
* contained in a {@link wijmo.angular2legacy.chart.map.WjFlexMap} component.
|
|
278
|
+
*
|
|
279
|
+
* Use the <b>wj-geo-grid-layer</b> component to add <b>GeoGridLayer</b> controls to your
|
|
280
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
281
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
282
|
+
*
|
|
283
|
+
* The <b>WjGeoGridLayer</b> component is derived from the <b>GeoGridLayer</b> class and
|
|
284
|
+
* inherits all its properties, events and methods.
|
|
285
|
+
*
|
|
286
|
+
* The <b>wj-geo-grid-layer</b> component may contain a {@link wijmo.angular2legacy.chart.map.WjColorScale} child component.
|
|
287
|
+
*/
|
|
288
|
+
export declare class WjGeoGridLayer extends wjcChartMap.GeoGridLayer implements OnInit, OnDestroy, AfterViewInit {
|
|
289
|
+
static readonly meta: IWjComponentMetadata;
|
|
290
|
+
private _wjBehaviour;
|
|
291
|
+
/**
|
|
292
|
+
* Indicates whether the component has been initialized by Angular.
|
|
293
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
294
|
+
*/
|
|
295
|
+
isInitialized: boolean;
|
|
296
|
+
/**
|
|
297
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
298
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
299
|
+
*/
|
|
300
|
+
initialized: EventEmitter<any>;
|
|
301
|
+
/**
|
|
302
|
+
* Gets or sets a name of a property that this component is assigned to.
|
|
303
|
+
* Default value is 'layers'.
|
|
304
|
+
*/
|
|
305
|
+
wjProperty: string;
|
|
306
|
+
/**
|
|
307
|
+
* Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
|
|
308
|
+
* See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
|
|
309
|
+
*/
|
|
310
|
+
asyncBindings: boolean;
|
|
311
|
+
/**
|
|
312
|
+
* Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanged</b> event for programmatic access.
|
|
313
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
314
|
+
* In template bindings use the conventional <b>itemsSourceChanged</b> Wijmo event name.
|
|
315
|
+
*/
|
|
316
|
+
itemsSourceChangedNg: EventEmitter<any>;
|
|
317
|
+
/**
|
|
318
|
+
* This event is used to implement two-way binding to the <b>itemsSource</b> property.
|
|
319
|
+
* It's triggered when the property value changes, with the event argument holding the new property value.
|
|
320
|
+
* You can bind handlers to this event in templates using the <b>itemsSourceChange</b> event name.
|
|
321
|
+
*/
|
|
322
|
+
itemsSourceChangePC: EventEmitter<any>;
|
|
323
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
324
|
+
/**
|
|
325
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
326
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
327
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
328
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
329
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
330
|
+
*/
|
|
331
|
+
created(): void;
|
|
332
|
+
ngOnInit(): void;
|
|
333
|
+
ngAfterViewInit(): void;
|
|
334
|
+
ngOnDestroy(): void;
|
|
335
|
+
}
|
|
336
|
+
declare var wjColorScaleMeta: IWjComponentMeta;
|
|
337
|
+
export { wjColorScaleMeta };
|
|
338
|
+
/**
|
|
339
|
+
* Angular 2 component for the {@link wijmo.chart.map.ColorScale} class.
|
|
340
|
+
*
|
|
341
|
+
* The <b>wj-color-scale</b> component must be
|
|
342
|
+
* contained in one of the following components:
|
|
343
|
+
* {@link wijmo.angular2legacy.chart.map.WjScatterMapLayer}
|
|
344
|
+
* , {@link wijmo.angular2legacy.chart.map.WjGeoMapLayer}
|
|
345
|
+
* or {@link wijmo.angular2legacy.chart.map.WjGeoGridLayer}.
|
|
346
|
+
*
|
|
347
|
+
* Use the <b>wj-color-scale</b> component to add <b>ColorScale</b> controls to your
|
|
348
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
349
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
350
|
+
*
|
|
351
|
+
* The <b>WjColorScale</b> component is derived from the <b>ColorScale</b> class and
|
|
352
|
+
* inherits all its properties, events and methods.
|
|
353
|
+
*/
|
|
354
|
+
export declare class WjColorScale extends wjcChartMap.ColorScale implements OnInit, OnDestroy, AfterViewInit {
|
|
355
|
+
static readonly meta: IWjComponentMetadata;
|
|
356
|
+
private _wjBehaviour;
|
|
357
|
+
/**
|
|
358
|
+
* Indicates whether the component has been initialized by Angular.
|
|
359
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
360
|
+
*/
|
|
361
|
+
isInitialized: boolean;
|
|
362
|
+
/**
|
|
363
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
364
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
365
|
+
*/
|
|
366
|
+
initialized: EventEmitter<any>;
|
|
367
|
+
/**
|
|
368
|
+
* Gets or sets a name of a property that this component is assigned to.
|
|
369
|
+
* Default value is 'colorScale'.
|
|
370
|
+
*/
|
|
371
|
+
wjProperty: string;
|
|
372
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
373
|
+
/**
|
|
374
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
375
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
376
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
377
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
378
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
379
|
+
*/
|
|
380
|
+
created(): void;
|
|
381
|
+
ngOnInit(): void;
|
|
382
|
+
ngAfterViewInit(): void;
|
|
383
|
+
ngOnDestroy(): void;
|
|
384
|
+
}
|
|
385
|
+
export declare class WjChartMapModule {
|
|
386
|
+
}
|
package/index.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
*
|
|
3
|
+
* Wijmo Library 5.20232.939
|
|
4
|
+
* https://developer.mescius.com/wijmo
|
|
5
|
+
*
|
|
6
|
+
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
7
|
+
*
|
|
8
|
+
* Licensed under the End-User License Agreement For MESCIUS Wijmo Software.
|
|
9
|
+
* us.sales@mescius.com
|
|
10
|
+
* https://developer.mescius.com/wijmo/licensing
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
"use strict";var __extends=this&&this.__extends||function(){var extendStatics=function(e,t){return(extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(e,t)};return function(e,t){extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}}(),__decorate=this&&this.__decorate||function(e,t,r,o){var a,n=arguments.length,i=n<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,r):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,r,o);else for(var c=e.length-1;c>=0;c--)(a=e[c])&&(i=(n<3?a(i):n>3?a(t,r,i):a(t,r))||i);return n>3&&i&&Object.defineProperty(t,r,i),i},__param=this&&this.__param||function(e,t){return function(r,o){t(r,o,e)}},__importStar=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var r in e)Object.hasOwnProperty.call(e,r)&&(t[r]=e[r]);t.default=e;return t};Object.defineProperty(exports,"__esModule",{value:!0});var core_1=require("@angular/core"),common_1=require("@angular/common"),forms_1=require("@angular/forms"),wijmo.angular2legacy_directivebase_1=require("@mescius/wijmo.angular2legacy.directivebase"),wjcChartMap=__importStar(require("@mescius/wijmo.chart.map")),wjFlexMapMeta={selector:"wj-flex-map",template:"<div><ng-content></ng-content></div>",inputs:["wjModelProperty","isDisabled","tabOrder","binding","footer","header","selectionMode","palette","plotMargin","footerStyle","headerStyle","tooltipContent","itemsSource","center","zoom"],outputs:["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","renderingNg: rendering","renderedNg: rendered","selectionChangedNg: selectionChanged","itemsSourceChangingNg: itemsSourceChanging","itemsSourceChangedNg: itemsSourceChanged"],providers:[{provide:forms_1.NG_VALUE_ACCESSOR,useFactory:wijmo.angular2legacy_directivebase_1.WjValueAccessorFactory,multi:!0,deps:["WjComponent"]}]};exports.wjFlexMapMeta=wjFlexMapMeta;var WjFlexMap=function(e){__extends(WjFlexMap,e);function WjFlexMap(t,r,o){var a=e.call(this,wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.getHostElement(t,r))||this;a.isInitialized=!1;a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,t,r,o);a.created();return a}t=WjFlexMap;WjFlexMap.prototype.created=function(){};WjFlexMap.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFlexMap.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFlexMap.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};WjFlexMap.prototype.addEventListener=function(t,r,o,a){var n=this;void 0===a&&(a=!1);var i=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior,c=i.getZone(this);c&&i.outsideZoneEvents[r]?c.runOutsideAngular((function(){e.prototype.addEventListener.call(n,t,r,o,a)})):e.prototype.addEventListener.call(this,t,r,o,a)};Object.defineProperty(WjFlexMap.prototype,"tooltipContent",{get:function(){return this.tooltip.content},set:function(e){this.tooltip.content=e},enumerable:!0,configurable:!0});var t;WjFlexMap.meta={outputs:wjFlexMapMeta.outputs};return WjFlexMap=t=__decorate([core_1.Component({selector:wjFlexMapMeta.selector,template:wjFlexMapMeta.template,inputs:wjFlexMapMeta.inputs,outputs:wjFlexMapMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return t}))}].concat(wjFlexMapMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjFlexMap)}(wjcChartMap.FlexMap);exports.WjFlexMap=WjFlexMap;var wjScatterMapLayerMeta={selector:"wj-scatter-map-layer",template:"<div><ng-content></ng-content></div>",inputs:["asyncBindings","wjProperty","style","itemsSource","url","symbolSize","symbolMinSize","symbolMaxSize","binding"],outputs:["initialized","itemsSourceChangedNg: itemsSourceChanged","itemsSourceChangePC: itemsSourceChange"],providers:[]};exports.wjScatterMapLayerMeta=wjScatterMapLayerMeta;var WjScatterMapLayer=function(e){__extends(WjScatterMapLayer,e);function WjScatterMapLayer(t,r,o){var a=e.call(this)||this;a.isInitialized=!1;a.wjProperty="layers";a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,t,r,o);a.created();return a}t=WjScatterMapLayer;WjScatterMapLayer.prototype.created=function(){};WjScatterMapLayer.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjScatterMapLayer.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjScatterMapLayer.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var t;WjScatterMapLayer.meta={outputs:wjScatterMapLayerMeta.outputs,changeEvents:{itemsSourceChanged:["itemsSource"]},siblingId:"layers"};return WjScatterMapLayer=t=__decorate([core_1.Component({selector:wjScatterMapLayerMeta.selector,template:wjScatterMapLayerMeta.template,inputs:wjScatterMapLayerMeta.inputs,outputs:wjScatterMapLayerMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return t}))}].concat(wjScatterMapLayerMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjScatterMapLayer)}(wjcChartMap.ScatterMapLayer);exports.WjScatterMapLayer=WjScatterMapLayer;var wjGeoMapLayerMeta={selector:"wj-geo-map-layer",template:"<div><ng-content></ng-content></div>",inputs:["asyncBindings","wjProperty","style","itemsSource","url","itemFormatter"],outputs:["initialized","itemsSourceChangedNg: itemsSourceChanged","itemsSourceChangePC: itemsSourceChange"],providers:[]};exports.wjGeoMapLayerMeta=wjGeoMapLayerMeta;var WjGeoMapLayer=function(e){__extends(WjGeoMapLayer,e);function WjGeoMapLayer(t,r,o){var a=e.call(this)||this;a.isInitialized=!1;a.wjProperty="layers";a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,t,r,o);a.created();return a}t=WjGeoMapLayer;WjGeoMapLayer.prototype.created=function(){};WjGeoMapLayer.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjGeoMapLayer.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjGeoMapLayer.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var t;WjGeoMapLayer.meta={outputs:wjGeoMapLayerMeta.outputs,changeEvents:{itemsSourceChanged:["itemsSource"]},siblingId:"layers"};return WjGeoMapLayer=t=__decorate([core_1.Component({selector:wjGeoMapLayerMeta.selector,template:wjGeoMapLayerMeta.template,inputs:wjGeoMapLayerMeta.inputs,outputs:wjGeoMapLayerMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return t}))}].concat(wjGeoMapLayerMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjGeoMapLayer)}(wjcChartMap.GeoMapLayer);exports.WjGeoMapLayer=WjGeoMapLayer;var wjGeoGridLayerMeta={selector:"wj-geo-grid-layer",template:"<div><ng-content></ng-content></div>",inputs:["asyncBindings","wjProperty","style","itemsSource","url"],outputs:["initialized","itemsSourceChangedNg: itemsSourceChanged","itemsSourceChangePC: itemsSourceChange"],providers:[]};exports.wjGeoGridLayerMeta=wjGeoGridLayerMeta;var WjGeoGridLayer=function(e){__extends(WjGeoGridLayer,e);function WjGeoGridLayer(t,r,o){var a=e.call(this)||this;a.isInitialized=!1;a.wjProperty="layers";a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,t,r,o);a.created();return a}t=WjGeoGridLayer;WjGeoGridLayer.prototype.created=function(){};WjGeoGridLayer.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjGeoGridLayer.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjGeoGridLayer.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var t;WjGeoGridLayer.meta={outputs:wjGeoGridLayerMeta.outputs,changeEvents:{itemsSourceChanged:["itemsSource"]},siblingId:"layers"};return WjGeoGridLayer=t=__decorate([core_1.Component({selector:wjGeoGridLayerMeta.selector,template:wjGeoGridLayerMeta.template,inputs:wjGeoGridLayerMeta.inputs,outputs:wjGeoGridLayerMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return t}))}].concat(wjGeoGridLayerMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjGeoGridLayer)}(wjcChartMap.GeoGridLayer);exports.WjGeoGridLayer=WjGeoGridLayer;var wjColorScaleMeta={selector:"wj-color-scale",template:"",inputs:["wjProperty","scale","binding","colorUnknown","colors","format"],outputs:["initialized"],providers:[]};exports.wjColorScaleMeta=wjColorScaleMeta;var WjColorScale=function(e){__extends(WjColorScale,e);function WjColorScale(t,r,o){var a=e.call(this)||this;a.isInitialized=!1;a.wjProperty="colorScale";a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,t,r,o);a.created();return a}t=WjColorScale;WjColorScale.prototype.created=function(){};WjColorScale.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjColorScale.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjColorScale.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var t;WjColorScale.meta={outputs:wjColorScaleMeta.outputs};return WjColorScale=t=__decorate([core_1.Component({selector:wjColorScaleMeta.selector,template:wjColorScaleMeta.template,inputs:wjColorScaleMeta.inputs,outputs:wjColorScaleMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return t}))}].concat(wjColorScaleMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjColorScale)}(wjcChartMap.ColorScale);exports.WjColorScale=WjColorScale;var moduleExports=[WjFlexMap,WjScatterMapLayer,WjGeoMapLayer,WjGeoGridLayer,WjColorScale],WjChartMapModule=function(){function WjChartMapModule(){}return WjChartMapModule=__decorate([core_1.NgModule({imports:[common_1.CommonModule],declarations:moduleExports.slice(),exports:moduleExports.slice()})],WjChartMapModule)}();exports.WjChartMapModule=WjChartMapModule;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":3,"metadata":{"___keepComment":{"__symbolic":"error","message":"Variable not initialized","line":26,"character":19},"wjFlexMapMeta":{"selector":"wj-flex-map","template":"<div><ng-content></ng-content></div>","inputs":["wjModelProperty","isDisabled","tabOrder","binding","footer","header","selectionMode","palette","plotMargin","footerStyle","headerStyle","tooltipContent","itemsSource","center","zoom"],"outputs":["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","renderingNg: rendering","renderedNg: rendered","selectionChangedNg: selectionChanged","itemsSourceChangingNg: itemsSourceChanging","itemsSourceChangedNg: itemsSourceChanged"],"providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR"},"useFactory":{"__symbolic":"reference","module":"@mescius/wijmo.angular2legacy.directivebase","name":"WjValueAccessorFactory"},"multi":true,"deps":["WjComponent"]}]},"WjFlexMap":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.chart.map","name":"FlexMap"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFlexMapMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFlexMapMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFlexMapMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFlexMapMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjFlexMap"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFlexMapMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"addEventListener":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFlexMapMeta"},"member":"outputs"}}}},"wjScatterMapLayerMeta":{"selector":"wj-scatter-map-layer","template":"<div><ng-content></ng-content></div>","inputs":["asyncBindings","wjProperty","style","itemsSource","url","symbolSize","symbolMinSize","symbolMaxSize","binding"],"outputs":["initialized","itemsSourceChangedNg: itemsSourceChanged","itemsSourceChangePC: itemsSourceChange"],"providers":[]},"WjScatterMapLayer":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.chart.map","name":"ScatterMapLayer"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjScatterMapLayerMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjScatterMapLayerMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjScatterMapLayerMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjScatterMapLayerMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjScatterMapLayer"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjScatterMapLayerMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjScatterMapLayerMeta"},"member":"outputs"},"changeEvents":{"itemsSourceChanged":["itemsSource"],"$quoted$":["itemsSourceChanged"]},"siblingId":"layers"}}},"wjGeoMapLayerMeta":{"selector":"wj-geo-map-layer","template":"<div><ng-content></ng-content></div>","inputs":["asyncBindings","wjProperty","style","itemsSource","url","itemFormatter"],"outputs":["initialized","itemsSourceChangedNg: itemsSourceChanged","itemsSourceChangePC: itemsSourceChange"],"providers":[]},"WjGeoMapLayer":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.chart.map","name":"GeoMapLayer"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoMapLayerMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoMapLayerMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoMapLayerMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoMapLayerMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjGeoMapLayer"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoMapLayerMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoMapLayerMeta"},"member":"outputs"},"changeEvents":{"itemsSourceChanged":["itemsSource"],"$quoted$":["itemsSourceChanged"]},"siblingId":"layers"}}},"wjGeoGridLayerMeta":{"selector":"wj-geo-grid-layer","template":"<div><ng-content></ng-content></div>","inputs":["asyncBindings","wjProperty","style","itemsSource","url"],"outputs":["initialized","itemsSourceChangedNg: itemsSourceChanged","itemsSourceChangePC: itemsSourceChange"],"providers":[]},"WjGeoGridLayer":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.chart.map","name":"GeoGridLayer"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoGridLayerMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoGridLayerMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoGridLayerMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoGridLayerMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjGeoGridLayer"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoGridLayerMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoGridLayerMeta"},"member":"outputs"},"changeEvents":{"itemsSourceChanged":["itemsSource"],"$quoted$":["itemsSourceChanged"]},"siblingId":"layers"}}},"wjColorScaleMeta":{"selector":"wj-color-scale","template":"","inputs":["wjProperty","scale","binding","colorUnknown","colors","format"],"outputs":["initialized"],"providers":[]},"WjColorScale":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.chart.map","name":"ColorScale"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjColorScaleMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjColorScaleMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjColorScaleMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjColorScaleMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjColorScale"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjColorScaleMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjColorScaleMeta"},"member":"outputs"}}}},"WjChartMapModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"WjFlexMap"},{"__symbolic":"reference","name":"WjScatterMapLayer"},{"__symbolic":"reference","name":"WjGeoMapLayer"},{"__symbolic":"reference","name":"WjGeoGridLayer"},{"__symbolic":"reference","name":"WjColorScale"}],"exports":[{"__symbolic":"reference","name":"WjFlexMap"},{"__symbolic":"reference","name":"WjScatterMapLayer"},{"__symbolic":"reference","name":"WjGeoMapLayer"},{"__symbolic":"reference","name":"WjGeoGridLayer"},{"__symbolic":"reference","name":"WjColorScale"}]}]}]}}},{"__symbolic":"module","version":1,"metadata":{"___keepComment":{"__symbolic":"error","message":"Variable not initialized","line":26,"character":19},"wjFlexMapMeta":{"selector":"wj-flex-map","template":"<div><ng-content></ng-content></div>","inputs":["wjModelProperty","isDisabled","tabOrder","binding","footer","header","selectionMode","palette","plotMargin","footerStyle","headerStyle","tooltipContent","itemsSource","center","zoom"],"outputs":["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","renderingNg: rendering","renderedNg: rendered","selectionChangedNg: selectionChanged","itemsSourceChangingNg: itemsSourceChanging","itemsSourceChangedNg: itemsSourceChanged"],"providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR"},"useFactory":{"__symbolic":"reference","module":"@mescius/wijmo.angular2legacy.directivebase","name":"WjValueAccessorFactory"},"multi":true,"deps":["WjComponent"]}]},"WjFlexMap":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.chart.map","name":"FlexMap"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFlexMapMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFlexMapMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFlexMapMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFlexMapMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjFlexMap"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFlexMapMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"addEventListener":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFlexMapMeta"},"member":"outputs"}}}},"wjScatterMapLayerMeta":{"selector":"wj-scatter-map-layer","template":"<div><ng-content></ng-content></div>","inputs":["asyncBindings","wjProperty","style","itemsSource","url","symbolSize","symbolMinSize","symbolMaxSize","binding"],"outputs":["initialized","itemsSourceChangedNg: itemsSourceChanged","itemsSourceChangePC: itemsSourceChange"],"providers":[]},"WjScatterMapLayer":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.chart.map","name":"ScatterMapLayer"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjScatterMapLayerMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjScatterMapLayerMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjScatterMapLayerMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjScatterMapLayerMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjScatterMapLayer"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjScatterMapLayerMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjScatterMapLayerMeta"},"member":"outputs"},"changeEvents":{"itemsSourceChanged":["itemsSource"]},"siblingId":"layers"}}},"wjGeoMapLayerMeta":{"selector":"wj-geo-map-layer","template":"<div><ng-content></ng-content></div>","inputs":["asyncBindings","wjProperty","style","itemsSource","url","itemFormatter"],"outputs":["initialized","itemsSourceChangedNg: itemsSourceChanged","itemsSourceChangePC: itemsSourceChange"],"providers":[]},"WjGeoMapLayer":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.chart.map","name":"GeoMapLayer"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoMapLayerMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoMapLayerMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoMapLayerMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoMapLayerMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjGeoMapLayer"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoMapLayerMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoMapLayerMeta"},"member":"outputs"},"changeEvents":{"itemsSourceChanged":["itemsSource"]},"siblingId":"layers"}}},"wjGeoGridLayerMeta":{"selector":"wj-geo-grid-layer","template":"<div><ng-content></ng-content></div>","inputs":["asyncBindings","wjProperty","style","itemsSource","url"],"outputs":["initialized","itemsSourceChangedNg: itemsSourceChanged","itemsSourceChangePC: itemsSourceChange"],"providers":[]},"WjGeoGridLayer":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.chart.map","name":"GeoGridLayer"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoGridLayerMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoGridLayerMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoGridLayerMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoGridLayerMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjGeoGridLayer"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoGridLayerMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjGeoGridLayerMeta"},"member":"outputs"},"changeEvents":{"itemsSourceChanged":["itemsSource"]},"siblingId":"layers"}}},"wjColorScaleMeta":{"selector":"wj-color-scale","template":"","inputs":["wjProperty","scale","binding","colorUnknown","colors","format"],"outputs":["initialized"],"providers":[]},"WjColorScale":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.chart.map","name":"ColorScale"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjColorScaleMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjColorScaleMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjColorScaleMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjColorScaleMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjColorScale"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjColorScaleMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjColorScaleMeta"},"member":"outputs"}}}},"WjChartMapModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"WjFlexMap"},{"__symbolic":"reference","name":"WjScatterMapLayer"},{"__symbolic":"reference","name":"WjGeoMapLayer"},{"__symbolic":"reference","name":"WjGeoGridLayer"},{"__symbolic":"reference","name":"WjColorScale"}],"exports":[{"__symbolic":"reference","name":"WjFlexMap"},{"__symbolic":"reference","name":"WjScatterMapLayer"},{"__symbolic":"reference","name":"WjGeoMapLayer"},{"__symbolic":"reference","name":"WjGeoGridLayer"},{"__symbolic":"reference","name":"WjColorScale"}]}]}]}}}]
|
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mescius/wijmo.angular2legacy.chart.map",
|
|
3
|
+
"version": "5.20232.939",
|
|
4
|
+
"description": "UI library for pure JS, Angular, React, Vue and more...",
|
|
5
|
+
"author": "MESCIUS inc",
|
|
6
|
+
"license": "Commercial",
|
|
7
|
+
"main": "./index.js",
|
|
8
|
+
"types": "./index.d.ts",
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"@mescius/wijmo": "5.20232.939",
|
|
11
|
+
"@mescius/wijmo.chart.map": "5.20232.939",
|
|
12
|
+
"@mescius/wijmo.angular2legacy.directivebase": "5.20232.939"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://developer.mescius.com/wijmo",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://developer.mescius.com/forums/wijmo"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"control",
|
|
20
|
+
"component",
|
|
21
|
+
"ui",
|
|
22
|
+
"control library",
|
|
23
|
+
"component library",
|
|
24
|
+
"ui library",
|
|
25
|
+
"control-library",
|
|
26
|
+
"component-library",
|
|
27
|
+
"ui-library",
|
|
28
|
+
"grid",
|
|
29
|
+
"data grid",
|
|
30
|
+
"data-grid",
|
|
31
|
+
"datagrid",
|
|
32
|
+
"angular grid",
|
|
33
|
+
"react grid",
|
|
34
|
+
"vue grid",
|
|
35
|
+
"angular-grid",
|
|
36
|
+
"react-grid",
|
|
37
|
+
"vue-grid"
|
|
38
|
+
],
|
|
39
|
+
"module": "./es5-esm.js",
|
|
40
|
+
"esm5": "./es5-esm.js",
|
|
41
|
+
"wj-esm5": "./es5-esm.js",
|
|
42
|
+
"es2015Cjs": "./es2015-commonjs.js",
|
|
43
|
+
"wj-es2015Cjs": "./es2015-commonjs.js",
|
|
44
|
+
"esm2015": "./es2015-esm.js",
|
|
45
|
+
"wj-esm2015": "./es2015-esm.js"
|
|
46
|
+
}
|