@progress/kendo-angular-map 19.1.2-develop.2 → 19.1.2-develop.3

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 (63) hide show
  1. package/directives.d.ts +2 -2
  2. package/esm2022/directives.mjs +2 -2
  3. package/esm2022/events/before-reset-event.mjs +2 -1
  4. package/esm2022/events/map-click-event.mjs +3 -2
  5. package/esm2022/events/marker-activate-event.mjs +2 -1
  6. package/esm2022/events/marker-click-event.mjs +2 -1
  7. package/esm2022/events/marker-created-event.mjs +3 -2
  8. package/esm2022/events/pan-end-event.mjs +3 -2
  9. package/esm2022/events/pan-event.mjs +3 -2
  10. package/esm2022/events/reset-event.mjs +2 -1
  11. package/esm2022/events/shape-click-event.mjs +3 -2
  12. package/esm2022/events/shape-created-event.mjs +3 -2
  13. package/esm2022/events/shape-feature-created-event.mjs +4 -3
  14. package/esm2022/events/shape-mouse-enter-event.mjs +5 -4
  15. package/esm2022/events/shape-mouse-leave-event.mjs +5 -4
  16. package/esm2022/events/zoom-end-event.mjs +3 -2
  17. package/esm2022/events/zoom-start-event.mjs +4 -4
  18. package/esm2022/map/bubble-layer.component.mjs +33 -11
  19. package/esm2022/map/layers.component.mjs +20 -1
  20. package/esm2022/map/marker-layer.component.mjs +29 -9
  21. package/esm2022/map/shape-layer.component.mjs +22 -3
  22. package/esm2022/map/tile-layer.component.mjs +24 -6
  23. package/esm2022/map.component.mjs +70 -69
  24. package/esm2022/map.module.mjs +18 -18
  25. package/esm2022/package-metadata.mjs +2 -2
  26. package/esm2022/tooltip/bubble-tooltip-template.directive.mjs +21 -0
  27. package/esm2022/tooltip/bubble-tooltip.component.mjs +24 -1
  28. package/esm2022/tooltip/marker-tooltip-template.directive.mjs +21 -0
  29. package/esm2022/tooltip/marker-tooltip.component.mjs +24 -1
  30. package/esm2022/tooltip/shape-tooltip-template.directive.mjs +21 -0
  31. package/esm2022/tooltip/shape-tooltip.component.mjs +24 -1
  32. package/events/before-reset-event.d.ts +2 -1
  33. package/events/map-click-event.d.ts +3 -2
  34. package/events/marker-activate-event.d.ts +2 -1
  35. package/events/marker-click-event.d.ts +2 -1
  36. package/events/marker-created-event.d.ts +3 -2
  37. package/events/pan-end-event.d.ts +3 -2
  38. package/events/pan-event.d.ts +3 -2
  39. package/events/reset-event.d.ts +2 -1
  40. package/events/shape-click-event.d.ts +3 -2
  41. package/events/shape-created-event.d.ts +3 -2
  42. package/events/shape-feature-created-event.d.ts +4 -3
  43. package/events/shape-mouse-enter-event.d.ts +5 -4
  44. package/events/shape-mouse-leave-event.d.ts +5 -4
  45. package/events/zoom-end-event.d.ts +3 -2
  46. package/events/zoom-start-event.d.ts +4 -4
  47. package/fesm2022/progress-kendo-angular-map.mjs +402 -157
  48. package/map/bubble-layer.component.d.ts +33 -11
  49. package/map/layers.component.d.ts +20 -1
  50. package/map/marker-layer.component.d.ts +29 -9
  51. package/map/shape-layer.component.d.ts +22 -3
  52. package/map/tile-layer.component.d.ts +24 -6
  53. package/map.component.d.ts +70 -69
  54. package/map.module.d.ts +18 -18
  55. package/package.json +7 -7
  56. package/schematics/ngAdd/index.js +1 -1
  57. package/tooltip/bubble-tooltip-template.directive.d.ts +21 -0
  58. package/tooltip/bubble-tooltip.component.d.ts +24 -1
  59. package/tooltip/marker-tooltip-template.directive.d.ts +21 -0
  60. package/tooltip/marker-tooltip.component.d.ts +24 -1
  61. package/tooltip/popup-settings.interface.d.ts +3 -3
  62. package/tooltip/shape-tooltip-template.directive.d.ts +21 -0
  63. package/tooltip/shape-tooltip.component.d.ts +24 -1
@@ -6,7 +6,8 @@ import { Location, MapPanEvent } from '@progress/kendo-charts';
6
6
  import { MapComponent } from '../map.component';
7
7
  import { BaseEvent } from './base-event';
8
8
  /**
9
- * Fired while the map viewport is being moved.
9
+ * Arguments for the `pan` event.
10
+ * Fires while the map viewport is being moved.
10
11
  */
11
12
  export declare class PanEvent extends BaseEvent implements MapPanEvent {
12
13
  /**
@@ -18,7 +19,7 @@ export declare class PanEvent extends BaseEvent implements MapPanEvent {
18
19
  */
19
20
  center: Location;
20
21
  /**
21
- * The source DOM event instance
22
+ * The source DOM event instance.
22
23
  */
23
24
  originalEvent: any;
24
25
  /**
@@ -6,7 +6,8 @@ import { MapResetEvent } from '@progress/kendo-charts';
6
6
  import { MapComponent } from '../map.component';
7
7
  import { BaseEvent } from './base-event';
8
8
  /**
9
- * Fired when the map is reset.
9
+ * Arguments for the `reset` event.
10
+ * Fires when the map resets.
10
11
  *
11
12
  * This typically occurs on initial load and after a zoom/center change.
12
13
  */
@@ -7,7 +7,8 @@ import { Element } from '@progress/kendo-drawing';
7
7
  import { MapComponent } from '../map.component';
8
8
  import { BaseEvent } from './base-event';
9
9
  /**
10
- * Fired when a shape is clicked or tapped.
10
+ * Arguments for the `shapeClick` event.
11
+ * Fires when a shape is clicked or tapped.
11
12
  */
12
13
  export declare class ShapeClickEvent extends BaseEvent implements MapShapeClickEvent {
13
14
  /**
@@ -19,7 +20,7 @@ export declare class ShapeClickEvent extends BaseEvent implements MapShapeClickE
19
20
  */
20
21
  shape: Element;
21
22
  /**
22
- * The source DOM event instance
23
+ * The source DOM event instance.
23
24
  */
24
25
  originalEvent: any;
25
26
  /**
@@ -7,7 +7,8 @@ import { Element } from '@progress/kendo-drawing';
7
7
  import { MapComponent } from '../map.component';
8
8
  import { BaseEvent } from './base-event';
9
9
  /**
10
- * Fired when a shape is created, but is not rendered yet.
10
+ * Arguments for the `shapeCreated` event.
11
+ * Fires when a shape is created, but is not rendered yet.
11
12
  */
12
13
  export declare class ShapeCreatedEvent extends BaseEvent implements MapShapeCreatedEvent {
13
14
  /**
@@ -23,7 +24,7 @@ export declare class ShapeCreatedEvent extends BaseEvent implements MapShapeCrea
23
24
  */
24
25
  dataItem: any;
25
26
  /**
26
- * The shape location
27
+ * The shape location.
27
28
  */
28
29
  location: Location;
29
30
  /**
@@ -7,11 +7,12 @@ import { Group } from '@progress/kendo-drawing';
7
7
  import { MapComponent } from '../map.component';
8
8
  import { BaseEvent } from './base-event';
9
9
  /**
10
- * Fired when a [GeoJSON Feature](https://geojson.org/geojson-spec.html#feature-objects) is created on a shape layer.
10
+ * Arguments for the `shapeFeatureCreated` event.
11
+ * Fires when a [GeoJSON Feature](https://geojson.org/geojson-spec.html#feature-objects) is created on a shape layer.
11
12
  */
12
13
  export declare class ShapeFeatureCreatedEvent extends BaseEvent implements MapShapeFeatureCreatedEvent {
13
14
  /**
14
- * The original data item for this Feature. Members include `geometries` and `properties`.
15
+ * The original data item for this Feature. Includes `geometries` and `properties` members.
15
16
  */
16
17
  dataItem: any;
17
18
  /**
@@ -19,7 +20,7 @@ export declare class ShapeFeatureCreatedEvent extends BaseEvent implements MapSh
19
20
  */
20
21
  layer: MapLayer;
21
22
  /**
22
- * The group containing feature shape instances.
23
+ * The group that contains feature shape instances.
23
24
  */
24
25
  group: Group;
25
26
  /**
@@ -7,10 +7,11 @@ import { Element } from '@progress/kendo-drawing';
7
7
  import { MapComponent } from '../map.component';
8
8
  import { BaseEvent } from './base-event';
9
9
  /**
10
- * Fired when the mouse enters a shape.
10
+ * Arguments for the `shapeMouseEnter` event.
11
+ * Fires when the mouse enters a shape.
11
12
  *
12
- * > This event will fire reliably only for shapes that have set fill color.
13
- * > The opacity can still be set to 0 so the shapes appear to have no fill.
13
+ * > This event fires reliably only for shapes that have a set fill color.
14
+ * > You can still set the opacity to 0 so the shapes appear to have no fill.
14
15
  */
15
16
  export declare class ShapeMouseEnterEvent extends BaseEvent implements MapShapeMouseEnterEvent {
16
17
  /**
@@ -22,7 +23,7 @@ export declare class ShapeMouseEnterEvent extends BaseEvent implements MapShapeM
22
23
  */
23
24
  shape: Element;
24
25
  /**
25
- * The source DOM event instance
26
+ * The source DOM event instance.
26
27
  */
27
28
  originalEvent: any;
28
29
  /**
@@ -7,10 +7,11 @@ import { Element } from '@progress/kendo-drawing';
7
7
  import { MapComponent } from '../map.component';
8
8
  import { BaseEvent } from './base-event';
9
9
  /**
10
- * Fired when the mouse leaves a shape.
10
+ * Arguments for the `shapeMouseLeave` event.
11
+ * Fires when the mouse leaves a shape.
11
12
  *
12
- * > This event will fire reliably only for shapes that have set fill color.
13
- * > The opacity can still be set to 0 so the shapes appear to have no fill.
13
+ * > This event fires reliably only for shapes that have a set fill color.
14
+ * > You can still set the opacity to 0 so the shapes appear to have no fill.
14
15
  */
15
16
  export declare class ShapeMouseLeaveEvent extends BaseEvent implements MapShapeMouseLeaveEvent {
16
17
  /**
@@ -22,7 +23,7 @@ export declare class ShapeMouseLeaveEvent extends BaseEvent implements MapShapeM
22
23
  */
23
24
  shape: Element;
24
25
  /**
25
- * The source DOM event instance
26
+ * The source DOM event instance.
26
27
  */
27
28
  originalEvent: any;
28
29
  /**
@@ -6,11 +6,12 @@ import { MapZoomEndEvent } from '@progress/kendo-charts';
6
6
  import { MapComponent } from '../map.component';
7
7
  import { BaseEvent } from './base-event';
8
8
  /**
9
- * Fired when the map zoom level has changed.
9
+ * Arguments for the `zoomEnd` event.
10
+ * Fires when the map zoom level changes.
10
11
  */
11
12
  export declare class ZoomEndEvent extends BaseEvent implements MapZoomEndEvent {
12
13
  /**
13
- * The source DOM event instance
14
+ * The source DOM event instance.
14
15
  */
15
16
  originalEvent: any;
16
17
  /**
@@ -6,13 +6,13 @@ import { MapZoomStartEvent } from '@progress/kendo-charts';
6
6
  import { MapComponent } from '../map.component';
7
7
  import { PreventableEvent } from './preventable-event';
8
8
  /**
9
- * Fired when the map zoom level is about to change.
10
- *
11
- * Cancelling the event will prevent the user action.
9
+ * Arguments for the `zoomStart` event.
10
+ * Fires when the map zoom level is about to change.
11
+ * Cancel the event to prevent the user action.
12
12
  */
13
13
  export declare class ZoomStartEvent extends PreventableEvent implements MapZoomStartEvent {
14
14
  /**
15
- * The source DOM event instance
15
+ * The source DOM event instance.
16
16
  */
17
17
  originalEvent: any;
18
18
  /**