@progress/kendo-angular-map 21.4.1-develop.1 → 22.0.0-develop.1

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/common/collection-item.component.d.ts +1 -1
  2. package/common/collection.component.d.ts +1 -1
  3. package/common/settings.component.d.ts +1 -1
  4. package/events/base-event.d.ts +1 -1
  5. package/events/preventable-event.d.ts +1 -1
  6. package/fesm2022/progress-kendo-angular-map.mjs +80 -80
  7. package/map/layer.component.d.ts +1 -1
  8. package/package.json +11 -19
  9. package/schematics/ngAdd/index.js +1 -1
  10. package/tooltip/base-tooltip.d.ts +1 -1
  11. package/esm2022/common/collection-item.component.mjs +0 -64
  12. package/esm2022/common/collection.component.mjs +0 -66
  13. package/esm2022/common/collection.service.mjs +0 -37
  14. package/esm2022/common/configuration.service.mjs +0 -62
  15. package/esm2022/common/copy-changes.mjs +0 -21
  16. package/esm2022/common/has-parent.mjs +0 -14
  17. package/esm2022/common/map-instance-observer.mjs +0 -21
  18. package/esm2022/common/settings.component.mjs +0 -61
  19. package/esm2022/common/to-simple-changes.mjs +0 -18
  20. package/esm2022/directives.mjs +0 -28
  21. package/esm2022/events/base-event.mjs +0 -26
  22. package/esm2022/events/before-reset-event.mjs +0 -17
  23. package/esm2022/events/instance-event.service.mjs +0 -32
  24. package/esm2022/events/map-click-event.mjs +0 -27
  25. package/esm2022/events/marker-activate-event.mjs +0 -27
  26. package/esm2022/events/marker-click-event.mjs +0 -27
  27. package/esm2022/events/marker-created-event.mjs +0 -29
  28. package/esm2022/events/pan-end-event.mjs +0 -32
  29. package/esm2022/events/pan-event.mjs +0 -32
  30. package/esm2022/events/preventable-event.mjs +0 -36
  31. package/esm2022/events/reset-event.mjs +0 -19
  32. package/esm2022/events/shape-click-event.mjs +0 -32
  33. package/esm2022/events/shape-created-event.mjs +0 -37
  34. package/esm2022/events/shape-feature-created-event.mjs +0 -37
  35. package/esm2022/events/shape-mouse-enter-event.mjs +0 -35
  36. package/esm2022/events/shape-mouse-leave-event.mjs +0 -35
  37. package/esm2022/events/zoom-end-event.mjs +0 -22
  38. package/esm2022/events/zoom-start-event.mjs +0 -23
  39. package/esm2022/events.mjs +0 -19
  40. package/esm2022/index.mjs +0 -17
  41. package/esm2022/map/bubble-layer.component.mjs +0 -126
  42. package/esm2022/map/layer/tooltip.component.mjs +0 -39
  43. package/esm2022/map/layer.component.mjs +0 -89
  44. package/esm2022/map/layers.component.mjs +0 -57
  45. package/esm2022/map/marker-layer.component.mjs +0 -102
  46. package/esm2022/map/shape-layer.component.mjs +0 -85
  47. package/esm2022/map/tile-layer.component.mjs +0 -91
  48. package/esm2022/map.component.mjs +0 -694
  49. package/esm2022/map.module.mjs +0 -55
  50. package/esm2022/package-metadata.mjs +0 -16
  51. package/esm2022/progress-kendo-angular-map.mjs +0 -8
  52. package/esm2022/tooltip/base-tooltip.mjs +0 -102
  53. package/esm2022/tooltip/body-factory.mjs +0 -14
  54. package/esm2022/tooltip/bubble-tooltip-template.directive.mjs +0 -55
  55. package/esm2022/tooltip/bubble-tooltip.component.mjs +0 -68
  56. package/esm2022/tooltip/marker-tooltip-template.directive.mjs +0 -54
  57. package/esm2022/tooltip/marker-tooltip.component.mjs +0 -68
  58. package/esm2022/tooltip/popup-settings.interface.mjs +0 -5
  59. package/esm2022/tooltip/shape-tooltip-template.directive.mjs +0 -54
  60. package/esm2022/tooltip/shape-tooltip.component.mjs +0 -68
  61. package/esm2022/tooltip/tooltip-popup.component.mjs +0 -120
  62. package/esm2022/tooltip/tooltip-template.service.mjs +0 -27
  63. package/esm2022/tooltip.mjs +0 -11
@@ -1,102 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ChangeDetectionStrategy, Component, forwardRef, Input } from '@angular/core';
6
- import { DomSanitizer } from '@angular/platform-browser';
7
- import { CollectionService } from '../common/collection.service';
8
- import { ConfigurationService } from '../common/configuration.service';
9
- import { LayerComponent } from './layer.component';
10
- import * as i0 from "@angular/core";
11
- import * as i1 from "../common/configuration.service";
12
- import * as i2 from "../common/collection.service";
13
- import * as i3 from "@angular/platform-browser";
14
- /**
15
- * Represents the Kendo UI MarkerLayer component for Angular. Displays data as markers on vector shape layers for marker maps.
16
- *
17
- * @example
18
- * ```typescript
19
- * @Component({
20
- * selector: 'my-app',
21
- * template: `
22
- * <kendo-map>
23
- * <kendo-map-marker-layer
24
- * [data]="markerData"
25
- * locationField="location"
26
- * titleField="title"
27
- * shape="pin">
28
- * </kendo-map-marker-layer>
29
- * </kendo-map>
30
- * `
31
- * })
32
- * export class AppComponent {
33
- * public markerData = [
34
- * { location: [40.7128, -74.0060], title: "New York" }
35
- * ];
36
- * }
37
- * ```
38
- *
39
- * @remarks
40
- * Supported children components are: {@link MarkerTooltipComponent}.
41
- */
42
- export class MarkerLayerComponent extends LayerComponent {
43
- configurationService;
44
- collectionService;
45
- sanitizer;
46
- /**
47
- * Sets the array of data items for this layer.
48
- */
49
- data;
50
- /**
51
- * Sets the data item field which contains the marker location.
52
- * The field should be an array with two numbers &mdash; latitude and longitude in decimal degrees.
53
- */
54
- locationField;
55
- /**
56
- * Sets the data item field which contains the marker title.
57
- */
58
- titleField;
59
- /**
60
- * Sets the default marker shape for data-bound markers. Supported marker shapes are `pinTarget` and `pin`.
61
- * Marker shapes are implemented as CSS classes on the marker element (`span.k-marker`). For example `pinTarget` is rendered as `k-marker-pin-target`.
62
- */
63
- shape;
64
- constructor(configurationService, collectionService, sanitizer) {
65
- super('marker', configurationService, collectionService, sanitizer);
66
- this.configurationService = configurationService;
67
- this.collectionService = collectionService;
68
- this.sanitizer = sanitizer;
69
- }
70
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MarkerLayerComponent, deps: [{ token: i1.ConfigurationService }, { token: i2.CollectionService }, { token: i3.DomSanitizer }], target: i0.ɵɵFactoryTarget.Component });
71
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MarkerLayerComponent, isStandalone: true, selector: "kendo-map-marker-layer", inputs: { data: "data", locationField: "locationField", titleField: "titleField", shape: "shape" }, providers: [
72
- ConfigurationService,
73
- {
74
- provide: LayerComponent,
75
- useExisting: forwardRef(() => MarkerLayerComponent)
76
- }
77
- ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
78
- }
79
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MarkerLayerComponent, decorators: [{
80
- type: Component,
81
- args: [{
82
- changeDetection: ChangeDetectionStrategy.OnPush,
83
- providers: [
84
- ConfigurationService,
85
- {
86
- provide: LayerComponent,
87
- useExisting: forwardRef(() => MarkerLayerComponent)
88
- }
89
- ],
90
- selector: 'kendo-map-marker-layer',
91
- template: '',
92
- standalone: true
93
- }]
94
- }], ctorParameters: () => [{ type: i1.ConfigurationService }, { type: i2.CollectionService }, { type: i3.DomSanitizer }], propDecorators: { data: [{
95
- type: Input
96
- }], locationField: [{
97
- type: Input
98
- }], titleField: [{
99
- type: Input
100
- }], shape: [{
101
- type: Input
102
- }] } });
@@ -1,85 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ChangeDetectionStrategy, Component, forwardRef, Input } from '@angular/core';
6
- import { DomSanitizer } from '@angular/platform-browser';
7
- import { CollectionService } from '../common/collection.service';
8
- import { ConfigurationService } from '../common/configuration.service';
9
- import { LayerComponent } from './layer.component';
10
- import * as i0 from "@angular/core";
11
- import * as i1 from "../common/configuration.service";
12
- import * as i2 from "../common/collection.service";
13
- import * as i3 from "@angular/platform-browser";
14
- /**
15
- * Represents the Kendo UI ShapeLayer component for Angular. Defines a vector shape layer bound to GeoJSON data.
16
- *
17
- * @example
18
- * ```typescript
19
- * @Component({
20
- * selector: 'my-app',
21
- * template: `
22
- * <kendo-map>
23
- * <kendo-map-shape-layer
24
- * [data]="geoJsonData"
25
- * [style]="shapeStyle">
26
- * </kendo-map-shape-layer>
27
- * </kendo-map>
28
- * `
29
- * })
30
- * export class AppComponent {
31
- * public geoJsonData = { type: "FeatureCollection", features: [] };
32
- * public shapeStyle = { fill: { color: "#007acc" }, stroke: { color: "#ffffff" } };
33
- * }
34
- * ```
35
- *
36
- * @remarks
37
- * Supported children components are: {@link ShapeTooltipComponent}.
38
- */
39
- export class ShapeLayerComponent extends LayerComponent {
40
- configurationService;
41
- collectionService;
42
- sanitizer;
43
- /**
44
- * Sets the array of data items for this layer.
45
- */
46
- data;
47
- /**
48
- * Sets the default style for shapes.
49
- */
50
- style;
51
- constructor(configurationService, collectionService, sanitizer) {
52
- super('shape', configurationService, collectionService, sanitizer);
53
- this.configurationService = configurationService;
54
- this.collectionService = collectionService;
55
- this.sanitizer = sanitizer;
56
- }
57
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ShapeLayerComponent, deps: [{ token: i1.ConfigurationService }, { token: i2.CollectionService }, { token: i3.DomSanitizer }], target: i0.ɵɵFactoryTarget.Component });
58
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: ShapeLayerComponent, isStandalone: true, selector: "kendo-map-shape-layer", inputs: { data: "data", style: "style" }, providers: [
59
- ConfigurationService,
60
- {
61
- provide: LayerComponent,
62
- useExisting: forwardRef(() => ShapeLayerComponent)
63
- }
64
- ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
65
- }
66
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ShapeLayerComponent, decorators: [{
67
- type: Component,
68
- args: [{
69
- changeDetection: ChangeDetectionStrategy.OnPush,
70
- providers: [
71
- ConfigurationService,
72
- {
73
- provide: LayerComponent,
74
- useExisting: forwardRef(() => ShapeLayerComponent)
75
- }
76
- ],
77
- selector: 'kendo-map-shape-layer',
78
- template: '',
79
- standalone: true
80
- }]
81
- }], ctorParameters: () => [{ type: i1.ConfigurationService }, { type: i2.CollectionService }, { type: i3.DomSanitizer }], propDecorators: { data: [{
82
- type: Input
83
- }], style: [{
84
- type: Input
85
- }] } });
@@ -1,91 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ChangeDetectionStrategy, Component, forwardRef, Input } from '@angular/core';
6
- import { DomSanitizer } from '@angular/platform-browser';
7
- import { CollectionService } from '../common/collection.service';
8
- import { ConfigurationService } from '../common/configuration.service';
9
- import { LayerComponent } from './layer.component';
10
- import * as i0 from "@angular/core";
11
- import * as i1 from "../common/configuration.service";
12
- import * as i2 from "../common/collection.service";
13
- import * as i3 from "@angular/platform-browser";
14
- /**
15
- * Represents the Kendo UI TileLayer component for Angular. Displays raster map tiles from various sources.
16
- *
17
- * @example
18
- * ```typescript
19
- * @Component({
20
- * selector: 'my-app',
21
- * template: `
22
- * <kendo-map>
23
- * <kendo-map-tile-layer
24
- * [urlTemplate]="tileUrlTemplate"
25
- * [subdomains]="['a', 'b', 'c']"
26
- * [tileSize]="256">
27
- * </kendo-map-tile-layer>
28
- * </kendo-map>
29
- * `
30
- * })
31
- * export class AppComponent {
32
- * public tileUrlTemplate = (args: any) => `https://${args.subdomain}.tile.openstreetmap.org/${args.z}/${args.x}/${args.y}.png`;
33
- * }
34
- * ```
35
- */
36
- export class TileLayerComponent extends LayerComponent {
37
- configurationService;
38
- collectionService;
39
- sanitizer;
40
- /**
41
- * Sets the size of the image tile in pixels.
42
- *
43
- * @default 256
44
- */
45
- tileSize;
46
- /**
47
- * Sets a list of subdomains to use for loading tiles.
48
- * Alternating between different subdomains allows more requests to execute in parallel.
49
- */
50
- subdomains;
51
- /**
52
- * Sets a function that returns an image URL for each tile position.
53
- */
54
- urlTemplate;
55
- constructor(configurationService, collectionService, sanitizer) {
56
- super('tile', configurationService, collectionService, sanitizer);
57
- this.configurationService = configurationService;
58
- this.collectionService = collectionService;
59
- this.sanitizer = sanitizer;
60
- }
61
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TileLayerComponent, deps: [{ token: i1.ConfigurationService }, { token: i2.CollectionService }, { token: i3.DomSanitizer }], target: i0.ɵɵFactoryTarget.Component });
62
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: TileLayerComponent, isStandalone: true, selector: "kendo-map-tile-layer", inputs: { tileSize: "tileSize", subdomains: "subdomains", urlTemplate: "urlTemplate" }, providers: [
63
- ConfigurationService,
64
- {
65
- provide: LayerComponent,
66
- useExisting: forwardRef(() => TileLayerComponent)
67
- }
68
- ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
69
- }
70
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TileLayerComponent, decorators: [{
71
- type: Component,
72
- args: [{
73
- changeDetection: ChangeDetectionStrategy.OnPush,
74
- providers: [
75
- ConfigurationService,
76
- {
77
- provide: LayerComponent,
78
- useExisting: forwardRef(() => TileLayerComponent)
79
- }
80
- ],
81
- selector: 'kendo-map-tile-layer',
82
- template: '',
83
- standalone: true
84
- }]
85
- }], ctorParameters: () => [{ type: i1.ConfigurationService }, { type: i2.CollectionService }, { type: i3.DomSanitizer }], propDecorators: { tileSize: [{
86
- type: Input
87
- }], subdomains: [{
88
- type: Input
89
- }], urlTemplate: [{
90
- type: Input
91
- }] } });