@syncfusion/ej2-angular-maps 28.1.38-ngcc → 28.1.38

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.
Files changed (40) hide show
  1. package/CHANGELOG.md +627 -0
  2. package/esm2020/public_api.mjs +2 -0
  3. package/esm2020/src/index.mjs +12 -0
  4. package/esm2020/src/maps/annotations.directive.mjs +62 -0
  5. package/esm2020/src/maps/bubblesettings.directive.mjs +71 -0
  6. package/esm2020/src/maps/colormapping.directive.mjs +61 -0
  7. package/esm2020/src/maps/initialshapeselection.directive.mjs +59 -0
  8. package/esm2020/src/maps/layers.directive.mjs +64 -0
  9. package/esm2020/src/maps/maps-all.module.mjs +68 -0
  10. package/esm2020/src/maps/maps.component.mjs +168 -0
  11. package/esm2020/src/maps/maps.module.mjs +88 -0
  12. package/esm2020/src/maps/markersettings.directive.mjs +73 -0
  13. package/esm2020/src/maps/navigationlinesettings.directive.mjs +67 -0
  14. package/esm2020/syncfusion-ej2-angular-maps.mjs +5 -0
  15. package/fesm2015/syncfusion-ej2-angular-maps.mjs +737 -0
  16. package/fesm2015/syncfusion-ej2-angular-maps.mjs.map +1 -0
  17. package/fesm2020/syncfusion-ej2-angular-maps.mjs +737 -0
  18. package/fesm2020/syncfusion-ej2-angular-maps.mjs.map +1 -0
  19. package/package.json +24 -11
  20. package/src/maps/annotations.directive.d.ts +5 -0
  21. package/src/maps/bubblesettings.directive.d.ts +5 -0
  22. package/src/maps/colormapping.directive.d.ts +5 -0
  23. package/src/maps/initialshapeselection.directive.d.ts +5 -0
  24. package/src/maps/layers.directive.d.ts +5 -0
  25. package/src/maps/maps-all.module.d.ts +6 -0
  26. package/src/maps/maps.component.d.ts +3 -0
  27. package/src/maps/maps.module.d.ts +13 -0
  28. package/src/maps/markersettings.directive.d.ts +5 -0
  29. package/src/maps/navigationlinesettings.directive.d.ts +5 -0
  30. package/{ej2-angular-maps.d.ts → syncfusion-ej2-angular-maps.d.ts} +1 -1
  31. package/@syncfusion/ej2-angular-maps.es5.js +0 -877
  32. package/@syncfusion/ej2-angular-maps.es5.js.map +0 -1
  33. package/@syncfusion/ej2-angular-maps.js +0 -810
  34. package/@syncfusion/ej2-angular-maps.js.map +0 -1
  35. package/dist/ej2-angular-maps.umd.js +0 -1136
  36. package/dist/ej2-angular-maps.umd.js.map +0 -1
  37. package/dist/ej2-angular-maps.umd.min.js +0 -11
  38. package/dist/ej2-angular-maps.umd.min.js.map +0 -1
  39. package/ej2-angular-maps.metadata.json +0 -1
  40. package/license +0 -10
package/CHANGELOG.md ADDED
@@ -0,0 +1,627 @@
1
+ <!-- markdownlint-disable MD010 -->
2
+
3
+ <!-- markdownlint-disable MD030 -->
4
+
5
+ <!-- markdownlint-disable MD004 -->
6
+
7
+ # Changelog
8
+
9
+ ## [Unreleased]
10
+
11
+ ### Maps
12
+
13
+ #### Bug fixes
14
+
15
+ - `#I668862` - Markers will now render correctly at certain zoom levels when the `animationDuration` is enabled for layers in Maps.
16
+
17
+ ## 28.1.33 (2024-12-12)
18
+
19
+ ### Maps
20
+
21
+ #### New features
22
+
23
+ - `#I523666`, `#I613689` - Marker clusters can now be enabled for individual marker groups using the `clusterSettings` property in the `markerSettings` of the map layer. This allows you to apply customizations such as different colors, shapes, connector lines, and marker count labels to marker clusters in each group.
24
+
25
+ ## 27.1.56 (2024-10-23)
26
+
27
+ ### Maps
28
+
29
+ #### Bug fixes
30
+
31
+ - `#F194675` - The `panComplete` event is now functioning properly with online map providers.
32
+
33
+ ## 27.1.48 (2024-09-18)
34
+
35
+ ### Maps
36
+
37
+ #### New Features
38
+
39
+ - An animation transition will now occur when the data labels are first rendered.
40
+
41
+ #### Bug Fixes
42
+
43
+ - `#I493376` - The tooltip will now be displayed properly above the marker templates.
44
+
45
+ ## 22.2.8 (2023-08-08)
46
+
47
+ ### Maps
48
+
49
+ #### Bug Fixes
50
+
51
+ - `#I485498` - Mouse events will now work properly on the marker templates.
52
+
53
+ ## 22.1.39 (2023-07-18)
54
+
55
+ ### Maps
56
+
57
+ #### Bug Fixes
58
+
59
+ - `#I482286` - When the page containing the Maps, which is placed in the dashboard, is switched dynamically, script errors are no longer thrown.
60
+
61
+ ## 22.1.34 (2023-06-21)
62
+
63
+ ### Maps
64
+
65
+ #### New Features
66
+
67
+ - `#I275734`, `#I293775` - The appearance of the buttons and tooltips in the zoom toolbar can now be customized using properties in the `buttonSettings` and `tooltipSettings` in the `toolbarSettings` property of `zoomSettings`.
68
+ - `#I425592` - The marker rendered in the Maps can now be dragged and dropped in the desired location based on the requirement. Events are also supported to notify the drag start and end.
69
+
70
+ ## 20.4.38 (2022-12-21)
71
+
72
+ ### Maps
73
+
74
+ #### New Features
75
+
76
+ - When panning is performed, the image rendering in online map providers is now improved.
77
+
78
+ ## 20.3.56 (2022-11-08)
79
+
80
+ ### Maps
81
+
82
+ #### Bug Fixes
83
+
84
+ - `#I413909` - When the highlight is removed from the interactive legend, the opacity of the corresponding shape is now properly maintained.
85
+ - `#I412101` - `shapeHighlight` event will now trigger properly.
86
+ - `#I411790` - `zoomByPosition` method will now work properly in the online map providers.
87
+ - `#I401870` - The fixes for the styles, related to the Content Security Policy (CSP), are included.
88
+
89
+ ## 20.3.49 (2022-10-11)
90
+
91
+ ### Maps
92
+
93
+ #### Bug Fixes
94
+
95
+ - `#I408673` - Data labels will now render properly when the values from `shapeDataPath` and `shapePropertyPath` are numbers.
96
+
97
+ ## 20.3.47 (2022-09-29)
98
+
99
+ ### Maps
100
+
101
+ #### Breaking Changes
102
+
103
+ - The `click` event is deprecated because it is triggered twice in the Angular application. The reason for this is that in Angular, the native `click` event is triggered first, followed by the `click` event available on Maps. To address this, we introduced a `onclick` event for the same functionality, which will now only trigger once.
104
+
105
+ #### Bug Fixes
106
+
107
+ - `#I404496` - Europe GeoJSON map will now render properly when legend is enabled.
108
+ - `#F175229` - `offsetX` and `offsetY` properties are now available in the event arguments of `dataLabelRendering` event to customize the label position.
109
+
110
+ #### New Features
111
+
112
+ - Azure Maps can now be loaded and viewed through our Maps.
113
+
114
+ ## 20.2.43 (2022-08-08)
115
+
116
+ ### Maps
117
+
118
+ #### New Features
119
+
120
+ - `#I390757` - As an alternative to the `click` event, the `onclick` event is exposed.
121
+
122
+ #### Bug Fixes
123
+
124
+ - `#I392653` - The `content` property in the event argument can now be used to customize the layer tooltip with format in the `tooltipRender` event.
125
+ - `#F174180` - Maps will function properly when adding and removing layers via the `zoom` event.
126
+
127
+ ## 20.2.38 (2022-07-12)
128
+
129
+ ### Maps
130
+
131
+ #### Bug Fixes
132
+
133
+ - `#I388045` - In mobile devices, the marker tooltip will now render properly when touched.
134
+
135
+ ## 20.2.36 (2022-06-30)
136
+
137
+ ### Maps
138
+
139
+ #### New Features
140
+
141
+ - GeoJSON data with geometry types like "MultiLineString," "MultiPoint," and "GeometryCollection" can now be displayed in Maps.
142
+ - `#F170451` - `urlTemplate` has been extended to accept tile server URLs from online map providers like ESRI, TomTom, and Mapbox.
143
+ - `#I326902` - Support for legend is provided when markers or sublayers are rendered in the online map providers.
144
+
145
+ ## 20.1.59 (2022-06-07)
146
+
147
+ ### Maps
148
+
149
+ #### Bug Fixes
150
+
151
+ - "Maps throws script error while resizing the window in React 18 sample" issue has been resolved.
152
+
153
+ ## 20.1.48 (2022-04-12)
154
+
155
+ ### Maps
156
+
157
+ #### Bug Fixes
158
+
159
+ - `#F174008` - `cancel` argument of the `zoom` event will work as expected when the value is set as **true**.
160
+
161
+ ## 20.1.47 (2022-04-04)
162
+
163
+ ### Maps
164
+
165
+ #### New Features
166
+
167
+ - Maps control now supports keyboard interaction for zooming, navigating, and other functions.
168
+
169
+ #### Bug Fixes
170
+
171
+ - `#F173348` - When the Maps control is printed, the position of the markers will now be proper.
172
+
173
+ ## 19.4.38 (2021-12-17)
174
+
175
+ ### Maps
176
+
177
+ #### New Features
178
+
179
+ - GeoJSON maps with "LineString" geometry type is now supported in the Maps control.
180
+ - When the `animationDuration` property is set, the zooming of map service providers such as OSM, Bing, and others is now smoother.
181
+
182
+ #### Bug Fixes
183
+
184
+ - `#F163990` - When the `imageUrlValuePath` property is set as the source image for the markers, image type markers will render properly.
185
+
186
+ ## 19.3.46 (2021-10-19)
187
+
188
+ ### Maps
189
+
190
+ #### Bug Fixes
191
+
192
+ - Script error will not be thrown when a shape is selected without binding the data source to the Maps.
193
+
194
+ ## 19.3.44 (2021-10-05)
195
+
196
+ ### Maps
197
+
198
+ #### Bug Fixes
199
+
200
+ - `#I342201` - When the `projectionType` is set to `Equirectangular`, data labels will now render correctly.
201
+
202
+ ## 19.1.59 (2021-05-04)
203
+
204
+ ### Maps
205
+
206
+ #### Bug Fixes
207
+
208
+ - `#F164278` - `click` event will now work properly in the mobile devices.
209
+
210
+ ## 19.1.57 (2021-04-20)
211
+
212
+ ### Maps
213
+
214
+ #### Bug Fixes
215
+
216
+ - `#318561` - When the `height` property is set to a percentage value, Maps can now render with proper height of the parent element.
217
+
218
+ ## 19.1.56 (2021-04-13)
219
+
220
+ ### Maps
221
+
222
+ #### New Features
223
+
224
+ - `#315251` - The `opacity` property for `border` in `shapeSettings` is exposed to provide opacity for the border of the shapes.
225
+
226
+ #### Bug Fixes
227
+
228
+ - `#F163539` - The data labels will now render properly when the value of `labelPath` of `dataLabelSettings` is different from the value of `shapePropertyPath` and `shapeDataPath`.
229
+
230
+ ## 19.1.54 (2021-03-30)
231
+
232
+ ### Maps
233
+
234
+ #### Bug Fixes
235
+
236
+ - `#312465` - When the `zoomFactor` property is set as 0 in the tile maps, it now renders properly.
237
+ - `#311273` - The `imageUrlValuePath` property now correctly renders markers as images.
238
+ - `#312865` - Markers will now render properly when they are added dynamically in the click event with "Normal" geometry type maps.
239
+ - `#317398` - `shapeSelection` method will now work properly with multi-layers on the Maps.
240
+
241
+ ## 18.4.39 (2021-01-28)
242
+
243
+ ### Maps
244
+
245
+ #### New Features
246
+
247
+ - `#306094` - `borderWidthValuePath` and `borderColorValuePath` properties are exposed to set border width and color to individual shapes using data source values.
248
+
249
+ #### Bug Fixes
250
+
251
+ - `#307853` - The property in the JSON for the maps shape data can now be displayed in the tooltip template.
252
+
253
+ ## 18.4.30 (2020-12-17)
254
+
255
+ ### Maps
256
+
257
+ #### Bug Fixes
258
+
259
+ - `#302270` - The position of the marker cluster will now render properly when the Map control is positioned in an absolute location.
260
+
261
+ ## 18.3.51 (2020-11-24)
262
+
263
+ ### Maps
264
+
265
+ #### Bug Fixes
266
+
267
+ - `#301355` - The balloon marker will now select properly with `initialMarkerSelection`.
268
+
269
+ ## 18.3.44 (2020-10-27)
270
+
271
+ ### Maps
272
+
273
+ #### Bug Fixes
274
+
275
+ - `#298697` - The font style of legend and data labels will be now set properly.
276
+
277
+ ## 18.3.42 (2020-10-20)
278
+
279
+ ### Maps
280
+
281
+ #### Bug Fixes
282
+
283
+ - `#292757` - `doubleClick` event will now be triggered properly.
284
+
285
+ ## 18.3.40 (2020-10-13)
286
+
287
+ ### Maps
288
+
289
+ #### Bug Fixes
290
+
291
+ - `#292757` - The multiple tile maps in a single page will now work properly.
292
+
293
+ ## 18.3.35 (2020-10-01)
294
+
295
+ ### Maps
296
+
297
+ #### New Features
298
+
299
+ `#291448` - A property `isShapeSelected` is exposed in the event arguments of the click event to specify whether the map shape is selected or not.
300
+
301
+ #### Bug Fixes
302
+
303
+ - `#F157226` - Marker clusters will now render properly when the markers are added dynamically to the maps.
304
+ - `#289864` - Hyperlinks added in the tooltip template will now be clickable in the click action.
305
+ - `#289034` - Panning will now work properly on mobile devices.
306
+ - `#287918` - Markers will now render properly when the animation duration is greater than 0.
307
+ - `#285727` - Outline for the shapes will no longer appear when clicking on it.
308
+
309
+ ## 18.2.47 (2020-07-28)
310
+
311
+ ### Maps
312
+
313
+ #### Bug Fixes
314
+
315
+ - `#285727` - Outline for the shapes will no longer appear when clicking on it.
316
+
317
+ ## 18.2.44 (2020-07-07)
318
+
319
+ ### Maps
320
+
321
+ #### New Features
322
+
323
+ - The data manager support for bubble and marker data source is now available.
324
+ - `Google` enum value is provided in `ShapeLayerType` to render the Google maps in the Maps control.
325
+ - `#280380` - `isResized` argument is exposed in the `loaded` event argument for indicating that the component is resized.
326
+
327
+ - The data manager support for bubble and marker data source is now available.
328
+ - `Google` enum value is provided in `ShapeLayerType` to render the Google maps in the Maps control.
329
+
330
+ #### Bug Fixes
331
+
332
+ - `#278468` - The script errors will not be thrown when rendering the GeoJSON file with line string geometry in Maps control.
333
+ - `#280380` - The center position property will be maintained when the zooming operation is done after the reset zoom.
334
+
335
+ - `#I278468` - The script errors will not be thrown when rendering the GeoJSON file with line string geometry in Maps control.
336
+
337
+ ## 17.4.39 (2019-12-17)
338
+
339
+ ### Maps
340
+
341
+ #### New Features
342
+
343
+ - `#I244108`, `#I240060`, `#I247767`, `#I250088` - Provided support to zoom the maps initially, based on the marker’s location.
344
+
345
+ - `#I248021` - Provided support to cluster and expand markers with the same latitude and longitude values.
346
+
347
+ - `#I253516` - Provided clustering support for marker templates.
348
+
349
+ - `#I255189` - Improved the `markerClusterClick` event to get the hidden cluster collection details.
350
+
351
+ - `#I242130` - Provided support to select or deselect the shapes dynamically and on initial rendering.
352
+
353
+ - `#I248172` - Provided support to show tooltip on tap/click.
354
+
355
+ - `F146103`, `F147309` - Provided support to bind the shapes and colors to the markers from the data source.
356
+
357
+ ## 17.3.21 (2019-10-30)
358
+
359
+ ### Maps
360
+
361
+ #### New Features
362
+
363
+ - Improved the marker cluster appearance for duplicate markers.
364
+
365
+ ## 17.3.14 (2019-10-03)
366
+
367
+ ### Maps
368
+
369
+ #### Bug Fixes
370
+
371
+ - `F147309` - Issue in adding sub layer in the 'OpenStreetMap' has been resolved.
372
+
373
+ ## 17.3.9-beta (2019-09-20)
374
+
375
+ ### Maps
376
+
377
+ #### New Features
378
+
379
+ - The toggle option has been provided for legend. So, if you toggle the legend, the given color will be changed to the corresponding shape item.
380
+
381
+ ## 17.2.41 (2019-08-14)
382
+
383
+ ### Maps
384
+
385
+ #### Bug Fixes
386
+
387
+ - `#244108` - The issue with legend border that does not disappear when hover over the legend item has been fixed.
388
+ - The issue with tooltip was not working in Internet Explorer 11 browser has been fixed.
389
+
390
+ ## 17.2.40 (2019-08-06)
391
+
392
+ ### Maps
393
+
394
+ #### Bug Fixes
395
+
396
+ - `#I243271` - The issue with changing text in our component when the text argument is changed in the datalabelRendering event has been fixed.
397
+ - `#I243499` - The issue with arrow option in the navigation line has been fixed.
398
+ - `#I238404` - The issue with bubble color and size when using point type shape data has been fixed.
399
+
400
+ ## 17.2.39 (2019-07-30)
401
+
402
+ ### Maps
403
+
404
+ #### Bug Fixes
405
+
406
+ - `#I240804` - The issue with dynamically updating the zoom factor along with the initial case of the zoom factor has been fixed.
407
+ - `#I240836` - The issue with border that was not applied for marker highlight and selection has been fixed.
408
+
409
+ ## 17.2.36 (2019-07-24)
410
+
411
+ ### Maps
412
+
413
+ #### Bug Fixes
414
+
415
+ - `#I240833` - Some labels disappear when you change "colorMapping" and refresh the map issue has been fixed.
416
+ - `I240804` - The issue with dynamically updating the zoom factor has been fixed.
417
+ - `I241873` - The issue with zooming the map component with a single click has been fixed
418
+
419
+ ## 17.2.35 (2019-07-17)
420
+
421
+ ### Maps
422
+
423
+ #### Bug Fixes
424
+
425
+ - `#I240835` - Highlight border thickness on the shape is huge when hovering on the legend item, it does not set as we given in code issue has been fixed
426
+ - `#I240836` - Marker highlight and selection settings do not make a difference issue has been fixed
427
+ - `#I240834` - Interactive legend is not working while changing data source issue has been fixed.
428
+
429
+ ## 17.2.34 (2019-07-11)
430
+
431
+ ### Maps
432
+
433
+ #### Bug Fixes
434
+
435
+ - `#F143717` - Zooming toolbar position misalign problem that occurs when there are multiple elements in DOM has been fixed
436
+ - `#I238404` - The issue that occurs when rendering bubble for point type Shape Data has been fixed
437
+ - `#I238839` - The console error that occurs when mouse leaves from the maps Shapes with legend hide option has been resolved
438
+
439
+ ## 17.1.32-beta (2019-03-13)
440
+
441
+ ### Maps
442
+
443
+ #### Bug Fixes
444
+
445
+ - Now, the border style is applied properly to the shapes when performing selection.
446
+
447
+ ## 16.4.55 (2019-02-27)
448
+
449
+ ### Maps
450
+
451
+ #### Bug Fixes
452
+
453
+ - Changed the OSM and Bing maps URL from http to https.
454
+
455
+ ## 16.4.53 (2019-02-13)
456
+
457
+ ### Maps
458
+
459
+ #### Bug Fixes
460
+
461
+ - Padding issue for OSM type layers resolved now.
462
+
463
+ ## 16.4.40-beta (2018-12-10)
464
+
465
+ ### Maps
466
+
467
+ #### New Features
468
+
469
+ - Support has been added for desaturation color mapping.
470
+ - Support has been added to hide specific legend items and bind legend text from data source.
471
+ - Support has been added for highlighting or selecting the legend items along with shapes.
472
+ - Support has been added to specify multiple fields in the data source for **shapePropertyPath**.
473
+ - Events has been added for zoom-in and zoom-out.
474
+
475
+ ## 16.3.33 (2018-11-20)
476
+
477
+ ### Maps
478
+
479
+ #### Bug Fixes
480
+
481
+ - Now map is rendering properly in universal applications
482
+ - Now panning works properly without freezing
483
+
484
+ ## 16.3.22 (2018-09-25)
485
+
486
+ ### Maps
487
+
488
+ #### Bug Fixes
489
+
490
+ - Now the data labels are rendering properly with numeric values.
491
+
492
+ ## 16.3.17 (2018-09-12)
493
+
494
+ ### Maps
495
+
496
+ #### Breaking Changes
497
+
498
+ - The maps tooltip has been replaced with `EJ2 SVG Tooltip`, so now it is mandatory to include `ej2-svg-base.umd.min.js` in system.js configuration if you are using system.js module loader. Update the system.js configuration while using this version and above.
499
+
500
+ #### Bug Fixes
501
+
502
+ - Tooltip is now working properly for marker in OSM map.
503
+
504
+ ## 16.2.49 (2018-08-21)
505
+
506
+ ### Maps
507
+
508
+ #### Bug Fixes
509
+
510
+ - Shape selection is now working fine with touch events.
511
+
512
+ ## 16.2.45 (2018-07-17)
513
+
514
+ ### Maps
515
+
516
+ #### Bug Fixes
517
+
518
+ - Marker click event is now working fine with OSM layer.
519
+
520
+ ## 16.2.44 (2018-07-10)
521
+
522
+ ### Maps
523
+
524
+ #### Bug Fixes
525
+
526
+ - Bing map type is changed as AerialWithLabels and now it is rendering properly with labels.
527
+
528
+ ## 16.2.41 (2018-06-25)
529
+
530
+ ### Maps
531
+
532
+ #### New Features
533
+
534
+ - Support has been added for animating the shapes on zooming.
535
+ - Support has been added to trim the maps title, when it exceeds the available width.
536
+ - Support had been provided for printing and exporting the maps.
537
+ - Support has been provided for printing.
538
+
539
+ - Support has been added for animating the shapes on zooming.
540
+ - Support has been added to trim the maps title, when it exceeds the available width.
541
+ - Support had been provided for printing and exporting the maps.
542
+ - Support has been provided for printing.## 16.1.24 (2018-02-22)
543
+
544
+ ### Maps
545
+
546
+ The Maps control is used to visualize the geographical data. It is used to represent the statistical data of a particular geographical area on Earth, with user interactivity and provides various customizing options. All the map elements are rendered using Scalable Vector Graphics (SVG).
547
+
548
+ - **Layers** - Map is maintained through layers and it can accommodate one or more layers.
549
+ - **GeoJSON Data Input** - Supports GeoJSON data, which allows you to plot your own shapes in the maps.
550
+ - **Map Providers** - Supports map providers such as Bing and OpenStreetMap that can be added to any layers.
551
+ - **Projection** - Supports 6 types of map projections.
552
+ - **Marker** - Supports 10 types of marker shapes and also takes custom HTML element.
553
+ - **Bubbles** - Supports 2 types of bubbles such as Circle and Square.
554
+ - **Legend** - Supports legend which is useful in providing additional information about shapes, bubbles and markers with paging and customization options.
555
+ - **Data Labels** - Supports data label to provide additional information about the shapes.
556
+ - **Navigation Lines** - Lines can be rendered between various points in map.
557
+ - **Annotations** - Supports placing any HTML element on desired location in the map.
558
+ - **User interaction** - Supports interactive features like zooming, panning, tooltip, highlight, selection and interactive legend.## 17.2.28-beta (2019-06-27)
559
+
560
+ ### Maps
561
+
562
+ #### New Features
563
+
564
+ - `#I227277` - Support has been provided to get geo location when clicking on maps.
565
+ - `#I217458` - Support has been provided to hide and cluster a marker when it intersects with other markers.
566
+
567
+ ## 17.1.50 (2019-06-04)
568
+
569
+ ### Maps
570
+
571
+ #### Bug Fixes
572
+
573
+ - `#I237041` - The issue in the sublayers are not re-rendered when zooming or panning is fixed.
574
+
575
+ ## 17.1.48 (2019-05-21)
576
+
577
+ ### Maps
578
+
579
+ #### New Features
580
+
581
+ - `#I233127` - The issue with recalculating the data labels when zooming the maps has been fixed.
582
+
583
+ ## 17.1.44 (2019-05-07)
584
+
585
+ ### Maps
586
+
587
+ #### Bug Fixes
588
+
589
+ - `#I234578` - The issue with rendering data label and tooltip when the layers type is set to 'Sublayer' has been fixed.
590
+ - `#I234578` - The issue with returning wrong highlight opacity to shapes in maps when highlighting the legend has been fixed.
591
+
592
+ ## 17.1.43 (2019-04-30)
593
+
594
+ ### Maps
595
+
596
+ #### Bug Fixes
597
+
598
+ - `#F143717` - The div containing the maps component overlaps the div with inputs above it issue has been fixed
599
+ - `#I233127` - The issue with the last interacted scaling is not maintained when refreshing the browser
600
+ with the 'enablePersistence' API as true has been fixed.
601
+
602
+ ## 17.1.42 (2019-04-23)
603
+
604
+ ### Maps
605
+
606
+ #### Bug Fixes
607
+
608
+ - `#I233129` – The issue in data label rendering, if you resize the map by setting the "intersectionAction" property to 'hide' has been fixed.
609
+ - `#I233127` - When selecting the new shape, the border for old shape is not removed issue has been fixed.
610
+ - `#I233127` – The issue of border width changing, when zooming the map has been fixed.
611
+
612
+ ## 17.1.41 (2019-04-16)
613
+
614
+ ### Maps
615
+
616
+ #### Bug Fixes
617
+
618
+ - `#F143717` - The issue "When setting high zoom factor to OpenStreetMap, sub layer is not placed properly" has been fixed".
619
+
620
+ ## 17.1.38 (2019-03-29)
621
+
622
+ ### Maps
623
+
624
+ #### Bug Fixes
625
+
626
+ - The ng-template support has been provided to render custom annotation.
627
+
@@ -0,0 +1,2 @@
1
+ export * from './src/index';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljX2FwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3B1YmxpY19hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxhQUFhLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3NyYy9pbmRleCc7Il19
@@ -0,0 +1,12 @@
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, PolygonService } from './maps/maps-all.module';
11
+ export * from '@syncfusion/ej2-maps';
12
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLDhCQUE4QixFQUFDLCtCQUErQixFQUFDLE1BQU0sd0NBQXdDLENBQUM7QUFDdEgsT0FBTyxFQUFDLGVBQWUsRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLGlDQUFpQyxDQUFDO0FBQ2pGLE9BQU8sRUFBQyxxQkFBcUIsRUFBQyxzQkFBc0IsRUFBQyxNQUFNLCtCQUErQixDQUFDO0FBQzNGLE9BQU8sRUFBQyxlQUFlLEVBQUMsZ0JBQWdCLEVBQUMsTUFBTSxpQ0FBaUMsQ0FBQztBQUNqRixPQUFPLEVBQUMsdUJBQXVCLEVBQUMsd0JBQXdCLEVBQUMsTUFBTSx5Q0FBeUMsQ0FBQztBQUN6RyxPQUFPLEVBQUMsY0FBYyxFQUFDLGVBQWUsRUFBQyxNQUFNLHlCQUF5QixDQUFDO0FBQ3ZFLE9BQU8sRUFBQyxtQkFBbUIsRUFBQyxvQkFBb0IsRUFBQyxNQUFNLDhCQUE4QixDQUFDO0FBQ3RGLE9BQU8sRUFBRSxhQUFhLEVBQUMsTUFBTSx1QkFBdUIsQ0FBQztBQUNyRCxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDaEQsT0FBTyxFQUFFLGFBQWEsRUFBRSxhQUFhLEVBQUUsYUFBYSxFQUFFLGFBQWEsRUFBRSxnQkFBZ0IsRUFBRSxnQkFBZ0IsRUFBRSxrQkFBa0IsRUFBRSxXQUFXLEVBQUUsZ0JBQWdCLEVBQUUscUJBQXFCLEVBQUUsa0JBQWtCLEVBQUUsWUFBWSxFQUFFLGdCQUFnQixFQUFFLGtCQUFrQixFQUFFLGNBQWMsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQzFTLGNBQWMsc0JBQXNCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQge0luaXRpYWxTaGFwZVNlbGVjdGlvbkRpcmVjdGl2ZSxJbml0aWFsU2hhcGVTZWxlY3Rpb25zRGlyZWN0aXZlfSBmcm9tICcuL21hcHMvaW5pdGlhbHNoYXBlc2VsZWN0aW9uLmRpcmVjdGl2ZSc7XG5leHBvcnQge01hcmtlckRpcmVjdGl2ZSxNYXJrZXJzRGlyZWN0aXZlfSBmcm9tICcuL21hcHMvbWFya2Vyc2V0dGluZ3MuZGlyZWN0aXZlJztcbmV4cG9ydCB7Q29sb3JNYXBwaW5nRGlyZWN0aXZlLENvbG9yTWFwcGluZ3NEaXJlY3RpdmV9IGZyb20gJy4vbWFwcy9jb2xvcm1hcHBpbmcuZGlyZWN0aXZlJztcbmV4cG9ydCB7QnViYmxlRGlyZWN0aXZlLEJ1YmJsZXNEaXJlY3RpdmV9IGZyb20gJy4vbWFwcy9idWJibGVzZXR0aW5ncy5kaXJlY3RpdmUnO1xuZXhwb3J0IHtOYXZpZ2F0aW9uTGluZURpcmVjdGl2ZSxOYXZpZ2F0aW9uTGluZXNEaXJlY3RpdmV9IGZyb20gJy4vbWFwcy9uYXZpZ2F0aW9ubGluZXNldHRpbmdzLmRpcmVjdGl2ZSc7XG5leHBvcnQge0xheWVyRGlyZWN0aXZlLExheWVyc0RpcmVjdGl2ZX0gZnJvbSAnLi9tYXBzL2xheWVycy5kaXJlY3RpdmUnO1xuZXhwb3J0IHtBbm5vdGF0aW9uRGlyZWN0aXZlLEFubm90YXRpb25zRGlyZWN0aXZlfSBmcm9tICcuL21hcHMvYW5ub3RhdGlvbnMuZGlyZWN0aXZlJztcbmV4cG9ydCB7IE1hcHNDb21wb25lbnR9IGZyb20gJy4vbWFwcy9tYXBzLmNvbXBvbmVudCc7XG5leHBvcnQgeyBNYXBzTW9kdWxlIH0gZnJvbSAnLi9tYXBzL21hcHMubW9kdWxlJztcbmV4cG9ydCB7IE1hcHNBbGxNb2R1bGUsIEJ1YmJsZVNlcnZpY2UsIExlZ2VuZFNlcnZpY2UsIE1hcmtlclNlcnZpY2UsIEhpZ2hsaWdodFNlcnZpY2UsIFNlbGVjdGlvblNlcnZpY2UsIE1hcHNUb29sdGlwU2VydmljZSwgWm9vbVNlcnZpY2UsIERhdGFMYWJlbFNlcnZpY2UsIE5hdmlnYXRpb25MaW5lU2VydmljZSwgQW5ub3RhdGlvbnNTZXJ2aWNlLCBQcmludFNlcnZpY2UsIFBkZkV4cG9ydFNlcnZpY2UsIEltYWdlRXhwb3J0U2VydmljZSwgUG9seWdvblNlcnZpY2UgfSBmcm9tICcuL21hcHMvbWFwcy1hbGwubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJ0BzeW5jZnVzaW9uL2VqMi1tYXBzJzsiXX0=