@syncfusion/ej2-maps 25.2.4 → 26.1.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/.eslintrc.json +3 -2
  2. package/dist/ej2-maps.min.js +2 -2
  3. package/dist/ej2-maps.umd.min.js +2 -2
  4. package/dist/ej2-maps.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-maps.es2015.js +1328 -1138
  6. package/dist/es6/ej2-maps.es2015.js.map +1 -1
  7. package/dist/es6/ej2-maps.es5.js +1375 -1180
  8. package/dist/es6/ej2-maps.es5.js.map +1 -1
  9. package/dist/global/ej2-maps.min.js +2 -2
  10. package/dist/global/ej2-maps.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +13 -13
  13. package/src/maps/layers/bing-map.d.ts +2 -2
  14. package/src/maps/layers/bubble.d.ts +3 -4
  15. package/src/maps/layers/bubble.js +3 -4
  16. package/src/maps/layers/color-mapping.d.ts +2 -2
  17. package/src/maps/layers/color-mapping.js +2 -2
  18. package/src/maps/layers/data-label.d.ts +1 -1
  19. package/src/maps/layers/data-label.js +6 -6
  20. package/src/maps/layers/layer-panel.d.ts +7 -7
  21. package/src/maps/layers/layer-panel.js +129 -193
  22. package/src/maps/layers/legend.d.ts +9 -0
  23. package/src/maps/layers/legend.js +147 -55
  24. package/src/maps/layers/marker.d.ts +8 -8
  25. package/src/maps/layers/marker.js +109 -105
  26. package/src/maps/layers/navigation-selected-line.d.ts +1 -1
  27. package/src/maps/layers/navigation-selected-line.js +2 -2
  28. package/src/maps/layers/polygon.d.ts +1 -1
  29. package/src/maps/layers/polygon.js +10 -7
  30. package/src/maps/maps.d.ts +24 -26
  31. package/src/maps/maps.js +39 -46
  32. package/src/maps/model/base-model.d.ts +20 -93
  33. package/src/maps/model/base.d.ts +19 -83
  34. package/src/maps/model/base.js +13 -40
  35. package/src/maps/model/constants.d.ts +0 -4
  36. package/src/maps/model/constants.js +0 -4
  37. package/src/maps/model/export-image.js +5 -2
  38. package/src/maps/model/export-pdf.js +5 -2
  39. package/src/maps/model/interface.d.ts +14 -1
  40. package/src/maps/model/interface.js +0 -1
  41. package/src/maps/model/print.d.ts +3 -3
  42. package/src/maps/model/print.js +8 -5
  43. package/src/maps/model/theme.d.ts +1 -1
  44. package/src/maps/model/theme.js +190 -15
  45. package/src/maps/user-interaction/annotation.d.ts +1 -2
  46. package/src/maps/user-interaction/annotation.js +1 -2
  47. package/src/maps/user-interaction/highlight.d.ts +4 -4
  48. package/src/maps/user-interaction/highlight.js +4 -4
  49. package/src/maps/user-interaction/selection.d.ts +5 -5
  50. package/src/maps/user-interaction/selection.js +5 -5
  51. package/src/maps/user-interaction/tooltip.d.ts +6 -6
  52. package/src/maps/user-interaction/tooltip.js +30 -13
  53. package/src/maps/user-interaction/zoom.d.ts +6 -4
  54. package/src/maps/user-interaction/zoom.js +50 -50
  55. package/src/maps/utils/enum.d.ts +7 -53
  56. package/src/maps/utils/helper.d.ts +87 -72
  57. package/src/maps/utils/helper.js +130 -102
  58. package/CHANGELOG.md +0 -632
@@ -48,7 +48,13 @@ export declare type MapsTheme =
48
48
  /** Renders a map with material3 theme. */
49
49
  'Material3' |
50
50
  /** Renders a map with material3dark theme. */
51
- 'Material3Dark';
51
+ 'Material3Dark' |
52
+ /** Renders a map with fluent2 theme. */
53
+ 'Fluent2' |
54
+ /** Renders a map with fluent2 dark theme. */
55
+ 'Fluent2Dark' |
56
+ /** Renders a map with fluent2 high contrast theme. */
57
+ 'Fluent2HighContrast';
52
58
  /**
53
59
  * Defines the position of the legend.
54
60
  */
@@ -110,30 +116,6 @@ export declare type LegendMode =
110
116
  'Default' |
111
117
  /** Set the legend as interactive, which is rectangular in shape with an indicator showcasing legend items. */
112
118
  'Interactive';
113
- /**
114
- * Defines the type of the layer to be rendered in the maps.
115
- */
116
- export declare type ShapeLayerType =
117
- /**
118
- * Defines that the geometry shapes will be rendered as map layer.
119
- */
120
- 'Geometry' |
121
- /**
122
- * Defines that the OpenStreetMap will be rendered as map layer.
123
- */
124
- 'OSM' |
125
- /**
126
- * Defines that the Bing maps will be rendered as map layer.
127
- */
128
- 'Bing' |
129
- /**
130
- * Defines that the Google static map will be rendered as map layer.
131
- */
132
- 'GoogleStaticMap' |
133
- /**
134
- * Defines that Google map will be rendered as map layer.
135
- */
136
- 'Google';
137
119
  /**
138
120
  * Defines the type of the layer in maps.
139
121
  */
@@ -194,34 +176,6 @@ export declare type ProjectionType =
194
176
  'AitOff' |
195
177
  /** Specifies the maps to be rendered in Equirectangular projection type. */
196
178
  'Equirectangular';
197
- /**
198
- * Defines the type of Bing map to be rendered in the maps.
199
- */
200
- export declare type BingMapType =
201
- /** Defines the maps to render Bing map layer with aerial type. */
202
- 'Aerial' |
203
- /** Defines the maps to render Bing map layer with aerial type with label over the regions. */
204
- 'AerialWithLabel' |
205
- /** Defines the maps to render Bing map layer with road maps. */
206
- 'Road' |
207
- /** Defines the maps to render a dark version of the road maps. */
208
- 'CanvasDark' |
209
- /** Defines the maps to render a lighter version of the road maps. */
210
- 'CanvasLight' |
211
- /** Defines the maps to render a grayscale version of the road maps. */
212
- 'CanvasGray';
213
- /**
214
- * Defines the type of the Google static map to be rendered in the maps.
215
- */
216
- export declare type StaticMapType =
217
- /** Specifies the maps to render Google static map layer with road map. */
218
- 'RoadMap' |
219
- /** Specifies the maps to render Google static map layer with terrain type. */
220
- 'Terrain' |
221
- /** Specifies the maps to render Google static map layer with satellite type. */
222
- 'Satellite' |
223
- /** Specifies the maps to render the Google static map with hybrid type. */
224
- 'Hybrid';
225
179
  /**
226
180
  * Defines the zooming tool bar orientation.
227
181
  */