@progress/kendo-angular-map 24.2.2 → 25.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 (56) hide show
  1. package/fesm2022/progress-kendo-angular-map.mjs +78 -78
  2. package/index.d.ts +1506 -13
  3. package/package-metadata.mjs +2 -2
  4. package/package.json +11 -11
  5. package/schematics/ngAdd/index.js +1 -1
  6. package/common/collection-item.component.d.ts +0 -40
  7. package/common/collection.component.d.ts +0 -27
  8. package/common/collection.service.d.ts +0 -32
  9. package/common/configuration.service.d.ts +0 -32
  10. package/common/copy-changes.d.ts +0 -11
  11. package/common/has-parent.d.ts +0 -8
  12. package/common/map-instance-observer.d.ts +0 -12
  13. package/common/settings.component.d.ts +0 -37
  14. package/common/to-simple-changes.d.ts +0 -11
  15. package/directives.d.ts +0 -15
  16. package/events/base-event.d.ts +0 -21
  17. package/events/before-reset-event.d.ts +0 -17
  18. package/events/instance-event.service.d.ts +0 -11
  19. package/events/map-click-event.d.ts +0 -25
  20. package/events/marker-activate-event.d.ts +0 -25
  21. package/events/marker-click-event.d.ts +0 -25
  22. package/events/marker-created-event.d.ts +0 -27
  23. package/events/pan-end-event.d.ts +0 -29
  24. package/events/pan-event.d.ts +0 -29
  25. package/events/preventable-event.d.ts +0 -28
  26. package/events/reset-event.d.ts +0 -19
  27. package/events/shape-click-event.d.ts +0 -30
  28. package/events/shape-created-event.d.ts +0 -34
  29. package/events/shape-feature-created-event.d.ts +0 -34
  30. package/events/shape-mouse-enter-event.d.ts +0 -33
  31. package/events/shape-mouse-leave-event.d.ts +0 -33
  32. package/events/zoom-end-event.d.ts +0 -21
  33. package/events/zoom-start-event.d.ts +0 -22
  34. package/events.d.ts +0 -19
  35. package/map/bubble-layer.component.d.ts +0 -83
  36. package/map/layer/tooltip.component.d.ts +0 -21
  37. package/map/layer.component.d.ts +0 -53
  38. package/map/layers.component.d.ts +0 -40
  39. package/map/marker-layer.component.d.ts +0 -64
  40. package/map/shape-layer.component.d.ts +0 -52
  41. package/map/tile-layer.component.d.ts +0 -55
  42. package/map.component.d.ts +0 -372
  43. package/map.module.d.ts +0 -42
  44. package/package-metadata.d.ts +0 -9
  45. package/tooltip/base-tooltip.d.ts +0 -31
  46. package/tooltip/body-factory.d.ts +0 -9
  47. package/tooltip/bubble-tooltip-template.directive.d.ts +0 -44
  48. package/tooltip/bubble-tooltip.component.d.ts +0 -47
  49. package/tooltip/marker-tooltip-template.directive.d.ts +0 -43
  50. package/tooltip/marker-tooltip.component.d.ts +0 -47
  51. package/tooltip/popup-settings.interface.d.ts +0 -18
  52. package/tooltip/shape-tooltip-template.directive.d.ts +0 -43
  53. package/tooltip/shape-tooltip.component.d.ts +0 -47
  54. package/tooltip/tooltip-popup.component.d.ts +0 -34
  55. package/tooltip/tooltip-template.service.d.ts +0 -16
  56. package/tooltip.d.ts +0 -11
@@ -1,372 +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 { AfterViewChecked, AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, NgZone, OnChanges, OnDestroy, Renderer2, SimpleChange } from '@angular/core';
6
- import { LocalizationService } from '@progress/kendo-angular-l10n';
7
- import { PopupSettings } from '@progress/kendo-angular-popup';
8
- import { IconSettings, IconsService } from '@progress/kendo-angular-icons';
9
- import { Extent, Location, Map, MapControls, MapLayer } from '@progress/kendo-charts';
10
- import { geometry } from '@progress/kendo-drawing';
11
- import { Subscription } from 'rxjs';
12
- import { ConfigurationService } from './common/configuration.service';
13
- import { MapInstanceObserver } from './common/map-instance-observer';
14
- import { BeforeResetEvent, MapClickEvent, MarkerActivateEvent, MarkerClickEvent, MarkerCreatedEvent, PanEndEvent, PanEvent, ResetEvent, ShapeClickEvent, ShapeCreatedEvent, ShapeFeatureCreatedEvent, ShapeMouseEnterEvent, ShapeMouseLeaveEvent, ZoomEndEvent, ZoomStartEvent } from './events';
15
- import { InstanceEventService } from './events/instance-event.service';
16
- import { TooltipPopupComponent } from './tooltip/tooltip-popup.component';
17
- import * as i0 from "@angular/core";
18
- /**
19
- * Represents the [Kendo UI Map component for Angular](https://www.telerik.com/kendo-angular-ui/components/map).
20
- *
21
- * Use this component to display interactive maps with markers, layers, and controls.
22
- * Configure zoom levels, center coordinates, and user interactions like panning and zooming.
23
- *
24
- * @example
25
- * ```ts
26
- * import { Component } from '@angular/core';
27
- *
28
- * @Component({
29
- * selector: 'my-app',
30
- * template: `
31
- * <kendo-map [center]="center" [zoom]="15">
32
- * <kendo-map-layers>
33
- * <kendo-map-tile-layer
34
- * [subdomains]="tileSubdomains"
35
- * [urlTemplate]="tileUrl"
36
- * attribution="&copy; <a href='https://osm.org/copyright'>OpenStreetMap contributors</a>"
37
- * >
38
- * </kendo-map-tile-layer>
39
- * <kendo-map-marker-layer
40
- * [data]="markers"
41
- * locationField="latlng"
42
- * titleField="name"
43
- * >
44
- * </kendo-map-marker-layer>
45
- * </kendo-map-layers>
46
- * </kendo-map>
47
- * `
48
- * })
49
- * class AppComponent {
50
- * tileSubdomains = ["a", "b", "c"];
51
- * tileUrl = (e: TileUrlTemplateArgs): string =>
52
- * `https://${e.subdomain}.tile.openstreetmap.org/${e.zoom}/${e.x}/${e.y}.png`;
53
- *
54
- * center = [30.2675, -97.7409];
55
- * markers = [{ latlng: [30.2675, -97.7409], name: "Zevo Toys" }];
56
- * }
57
- * ```
58
- *
59
- * @remarks
60
- * Supported children components are: {@link LayersComponent}.
61
- */
62
- export declare class MapComponent implements AfterViewInit, AfterViewChecked, OnChanges, OnDestroy {
63
- configurationService: ConfigurationService;
64
- protected instanceEventService: InstanceEventService;
65
- protected element: ElementRef;
66
- protected localizationService: LocalizationService;
67
- protected changeDetector: ChangeDetectorRef;
68
- protected ngZone: NgZone;
69
- protected renderer: Renderer2;
70
- protected iconsService: IconsService;
71
- /**
72
- * Limits the automatic resizing of the Map. Sets the maximum number of times per second
73
- * that the component redraws its content when the size of its container changes.
74
- * To disable the automatic resizing, set it to `0`.
75
- *
76
- * @default 10
77
- *
78
- * @example
79
- * ```ts
80
- * @Component({
81
- * selector: 'my-app',
82
- * template: `
83
- * <kendo-map [resizeRateLimit]="2">
84
- * </kendo-map>
85
- * `
86
- * })
87
- * export class AppComponent {
88
- * }
89
- * ```
90
- */
91
- resizeRateLimit: number;
92
- /**
93
- * Specifies the map center coordinates.
94
- * Provide coordinates as `[Latitude, Longitude]`.
95
- */
96
- center: number[];
97
- /**
98
- * Specifies the configuration for built-in map controls.
99
- */
100
- controls: MapControls;
101
- /**
102
- * The minimum zoom level. Typical web maps use zoom levels from 0 (whole world) to 19 (sub-meter features).
103
- *
104
- * @default 1
105
- */
106
- minZoom: number;
107
- /**
108
- * The maximum zoom level. Typical web maps use zoom levels from 0 (whole world) to 19 (sub-meter features).
109
- *
110
- * @default 19
111
- */
112
- maxZoom: number;
113
- /**
114
- * The size of the map in pixels at zoom level 0.
115
- *
116
- * @default 256
117
- */
118
- minSize?: number;
119
- /**
120
- * Controls whether the user can pan the map.
121
- *
122
- * @default true
123
- */
124
- pannable: boolean;
125
- /**
126
- * The settings for the tooltip popup.
127
- */
128
- popupSettings: PopupSettings;
129
- /**
130
- * Specifies whether the map should wrap around the east-west edges.
131
- *
132
- * @default true
133
- */
134
- wraparound: boolean;
135
- /**
136
- * Specifies the initial zoom level.
137
- * Use values from 0 (whole world) to 19 (sub-meter features).
138
- * The map size derives from the zoom level and `minScale` options: `size = (2 ^ zoom) * minSize`.
139
- * Map zoom rounds floating point numbers to use whole [`zoom levels`](https://wiki.openstreetmap.org/wiki/Zoom_levels) 0 through 19.
140
- *
141
- * @default 3
142
- */
143
- zoom: number;
144
- /**
145
- * Determines whether users can change the map zoom level.
146
- *
147
- * @default true
148
- */
149
- zoomable: boolean;
150
- /**
151
- * Fires immediately before the map resets. This event is typically used for cleanup by layer implementers.
152
- */
153
- beforeReset: EventEmitter<BeforeResetEvent>;
154
- /**
155
- * Fires when the user clicks on the map.
156
- */
157
- mapClick: EventEmitter<MapClickEvent>;
158
- /**
159
- * Fires when a marker appears on the map and its DOM element becomes available.
160
- */
161
- markerActivate: EventEmitter<MarkerActivateEvent>;
162
- /**
163
- * Fires when the user clicks or taps a marker.
164
- */
165
- markerClick: EventEmitter<MarkerClickEvent>;
166
- /**
167
- * Fires once the map has created a marker, and just before the map displays it.
168
- *
169
- * Cancelling the event prevents displaying the marker.
170
- */
171
- markerCreated: EventEmitter<MarkerCreatedEvent>;
172
- /**
173
- * Fires after the map viewport completes panning.
174
- */
175
- panEnd: EventEmitter<PanEndEvent>;
176
- /**
177
- * Fires while the map viewport is being moved.
178
- */
179
- pan: EventEmitter<PanEvent>;
180
- /**
181
- * Fires when the map resets.
182
- *
183
- * This typically occurs on initial load and after a zoom/center change.
184
- */
185
- reset: EventEmitter<ResetEvent>;
186
- /**
187
- * Fires when a shape is clicked or tapped.
188
- */
189
- shapeClick: EventEmitter<ShapeClickEvent>;
190
- /**
191
- * Fires when a shape is created, but is not rendered yet.
192
- */
193
- shapeCreated: EventEmitter<ShapeCreatedEvent>;
194
- /**
195
- * Fires when a [GeoJSON Feature](https://geojson.org/geojson-spec.html#feature-objects) is created on a shape layer.
196
- */
197
- shapeFeatureCreated: EventEmitter<ShapeFeatureCreatedEvent>;
198
- /**
199
- * Fires when the mouse enters a shape.
200
- *
201
- * > This event will fire reliably only for shapes that have set fill color.
202
- * > The opacity can still be set to 0 so the shapes appear to have no fill.
203
- */
204
- shapeMouseEnter: EventEmitter<ShapeMouseEnterEvent>;
205
- /**
206
- * Fires when the mouse leaves a shape.
207
- *
208
- * > This event will fire reliably only for shapes that have set fill color.
209
- * > The opacity can still be set to 0 so the shapes appear to have no fill.
210
- */
211
- shapeMouseLeave: EventEmitter<ShapeMouseLeaveEvent>;
212
- /**
213
- * Fires when the map zoom level is about to change.
214
- *
215
- * Cancelling the event will prevent the user action.
216
- */
217
- zoomStart: EventEmitter<ZoomStartEvent>;
218
- /**
219
- * Fires when the map zoom level changes.
220
- */
221
- zoomEnd: EventEmitter<ZoomEndEvent>;
222
- /**
223
- * Fires when the map center has been changed.
224
- */
225
- centerChange: EventEmitter<number[]>;
226
- /**
227
- * Fires when the map zoom level has been changed.
228
- */
229
- zoomChange: EventEmitter<number>;
230
- tooltipInstance: TooltipPopupComponent;
231
- instance: Map;
232
- initResizeSensor: boolean;
233
- protected options: any;
234
- protected theme: any;
235
- protected resizeTimeout: any;
236
- protected redrawTimeout: any;
237
- protected destroyed: boolean;
238
- protected rtl: boolean;
239
- protected subscriptions: Subscription;
240
- protected optionsChange: Subscription;
241
- protected domSubscriptions: () => void;
242
- protected iconSettings: IconSettings;
243
- constructor(configurationService: ConfigurationService, instanceEventService: InstanceEventService, element: ElementRef, localizationService: LocalizationService, changeDetector: ChangeDetectorRef, ngZone: NgZone, renderer: Renderer2, iconsService: IconsService);
244
- ngAfterViewInit(): void;
245
- ngAfterViewChecked(): void;
246
- ngOnChanges(changes: {
247
- [propertyName: string]: SimpleChange;
248
- }): void;
249
- ngOnDestroy(): void;
250
- /**
251
- * Gets the marker layers instances.
252
- */
253
- get layers(): MapLayer[];
254
- /**
255
- * Gets the extent (visible area) of the map.
256
- */
257
- get extent(): Extent;
258
- /**
259
- * Sets the extent (visible area) of the map.
260
- */
261
- set extent(extent: Extent);
262
- /**
263
- * Detects the container size and redraws the Map.
264
- * Resizing happens automatically unless you set `resizeRateLimit` to `0`.
265
- */
266
- resize(): void;
267
- /**
268
- * Gets the size of the visible map area.
269
- *
270
- * @returns {Object} The width and height of the visible map area.
271
- */
272
- viewSize(): {
273
- width: number;
274
- height: number;
275
- };
276
- /**
277
- * Gets event coordinates relative to the map element.
278
- * Offset coordinates do not sync to a specific map location.
279
- *
280
- * @param {any} e The mouse event.
281
- * @returns {geometry.Point} The event coordinates relative to the map element.
282
- */
283
- eventOffset(e: any): geometry.Point;
284
- /**
285
- * Gets projected layer coordinates for this mouse event.
286
- * Layer coordinates are absolute and change only when zoom level changes.
287
- *
288
- * @param {any} e The mouse event.
289
- * @returns {geometry.Point} The projected layer coordinates for this event.
290
- */
291
- eventToLayer(e: any): geometry.Point;
292
- /**
293
- * Gets the geographic location for this mouse event.
294
- *
295
- * @param {any} e The mouse event.
296
- * @returns {geometry.Point} The geographic location for this mouse event.
297
- */
298
- eventToLocation(e: any): geometry.Point;
299
- /**
300
- * Gets relative view coordinates for this mouse event.
301
- * Layer elements positioned on these coordinates appear under the mouse cursor.
302
- * View coordinates become invalid after a map reset.
303
- *
304
- * @param {any} e The mouse event.
305
- * @returns {geometry.Point} The relative view coordinates for this mouse event.
306
- */
307
- eventToView(e: any): geometry.Point;
308
- /**
309
- * Converts layer coordinates to geographic location.
310
- *
311
- * @param {geometry.Point | number[]} point The layer coordinates. Arrays use x, y order.
312
- * @param {number} zoom Optional. Zoom level to use. Defaults to current zoom level.
313
- * @returns {Location} The geographic location for the layer coordinates.
314
- */
315
- layerToLocation(point: geometry.Point | number[], zoom?: number): Location;
316
- /**
317
- * Gets layer coordinates for a geographic location.
318
- *
319
- * @param {Location | number[]} location The geographic location. Arrays use [Latitude, Longitude] order.
320
- * @param {number} zoom Optional. Zoom level to use. Defaults to current zoom level.
321
- * @returns {geometry.Point} The layer coordinates.
322
- */
323
- locationToLayer(location: Location | number[], zoom?: number): geometry.Point;
324
- /**
325
- * Gets view coordinates for a geographic location.
326
- *
327
- * @param {Location | number[]} location The geographic location. Arrays use [Latitude, Longitude] order.
328
- * @returns {geometry.Point} The view coordinates for the geographic location.
329
- */
330
- locationToView(location: Location | number[]): geometry.Point;
331
- /**
332
- * Gets the geographic location for view coordinates.
333
- *
334
- * @param {geometry.Point | number[]} point The view coordinates. Arrays use x, y order.
335
- * @param {number} zoom Optional. Zoom level to use. Defaults to current zoom level.
336
- * @returns {Location} The geographic location for the view coordinates.
337
- */
338
- viewToLocation(point: geometry.Point | number[], zoom?: number): Location;
339
- /**
340
- * @hidden
341
- */
342
- onResize(): void;
343
- /**
344
- * @hidden
345
- */
346
- get canRender(): boolean;
347
- protected get autoResize(): boolean;
348
- protected init(): void;
349
- protected initConfig(): void;
350
- protected createInstance(element: any, observer: MapInstanceObserver): void;
351
- protected activeEmitter(name: string): any;
352
- protected trigger(name: string, e: any): boolean;
353
- protected run(callback: any, inZone?: boolean, detectChanges?: boolean): void;
354
- protected detectChanges(): void;
355
- protected setDirection(): void;
356
- protected get isRTL(): boolean;
357
- protected onInit(e: any): void;
358
- protected onShowTooltip(e: any): void;
359
- protected onHideTooltip(): void;
360
- protected onCenterChange(e: any): void;
361
- protected onZoomChange(e: any): void;
362
- /**
363
- * @hidden
364
- */
365
- tooltipMouseleave(e: any): void;
366
- /**
367
- * @hidden
368
- */
369
- mapMouseleave(e: any): void;
370
- static ɵfac: i0.ɵɵFactoryDeclaration<MapComponent, never>;
371
- static ɵcmp: i0.ɵɵComponentDeclaration<MapComponent, "kendo-map", ["kendoMap"], { "resizeRateLimit": { "alias": "resizeRateLimit"; "required": false; }; "center": { "alias": "center"; "required": false; }; "controls": { "alias": "controls"; "required": false; }; "minZoom": { "alias": "minZoom"; "required": false; }; "maxZoom": { "alias": "maxZoom"; "required": false; }; "minSize": { "alias": "minSize"; "required": false; }; "pannable": { "alias": "pannable"; "required": false; }; "popupSettings": { "alias": "popupSettings"; "required": false; }; "wraparound": { "alias": "wraparound"; "required": false; }; "zoom": { "alias": "zoom"; "required": false; }; "zoomable": { "alias": "zoomable"; "required": false; }; }, { "beforeReset": "beforeReset"; "mapClick": "mapClick"; "markerActivate": "markerActivate"; "markerClick": "markerClick"; "markerCreated": "markerCreated"; "panEnd": "panEnd"; "pan": "pan"; "reset": "reset"; "shapeClick": "shapeClick"; "shapeCreated": "shapeCreated"; "shapeFeatureCreated": "shapeFeatureCreated"; "shapeMouseEnter": "shapeMouseEnter"; "shapeMouseLeave": "shapeMouseLeave"; "zoomStart": "zoomStart"; "zoomEnd": "zoomEnd"; "centerChange": "centerChange"; "zoomChange": "zoomChange"; }, never, never, true, never>;
372
- }
package/map.module.d.ts DELETED
@@ -1,42 +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 * as i0 from "@angular/core";
6
- import * as i1 from "./map/bubble-layer.component";
7
- import * as i2 from "./tooltip/bubble-tooltip.component";
8
- import * as i3 from "./tooltip/bubble-tooltip-template.directive";
9
- import * as i4 from "./map/layers.component";
10
- import * as i5 from "./map.component";
11
- import * as i6 from "./map/marker-layer.component";
12
- import * as i7 from "./tooltip/marker-tooltip.component";
13
- import * as i8 from "./tooltip/marker-tooltip-template.directive";
14
- import * as i9 from "./map/shape-layer.component";
15
- import * as i10 from "./tooltip/shape-tooltip.component";
16
- import * as i11 from "./tooltip/shape-tooltip-template.directive";
17
- import * as i12 from "./map/tile-layer.component";
18
- /**
19
- * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
20
- * definition for the Map component.
21
- *
22
- * @example
23
- * ```ts
24
- * import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
25
- * import { BrowserModule } from '@angular/platform-browser';
26
- * import { NgModule } from '@angular/core';
27
- * import { MapModule } from '@progress/kendo-angular-map';
28
- * import { AppComponent } from './app.component';
29
- *
30
- * @NgModule({
31
- * declarations: [AppComponent],
32
- * imports: [BrowserModule, BrowserAnimationsModule, MapModule],
33
- * bootstrap: [AppComponent]
34
- * })
35
- * export class AppModule {}
36
- * ```
37
- */
38
- export declare class MapModule {
39
- static ɵfac: i0.ɵɵFactoryDeclaration<MapModule, never>;
40
- static ɵmod: i0.ɵɵNgModuleDeclaration<MapModule, never, [typeof i1.BubbleLayerComponent, typeof i2.BubbleTooltipComponent, typeof i3.BubbleTooltipTemplateDirective, typeof i4.LayersComponent, typeof i5.MapComponent, typeof i6.MarkerLayerComponent, typeof i7.MarkerTooltipComponent, typeof i8.MarkerTooltipTemplateDirective, typeof i9.ShapeLayerComponent, typeof i10.ShapeTooltipComponent, typeof i11.ShapeTooltipTemplateDirective, typeof i12.TileLayerComponent], [typeof i1.BubbleLayerComponent, typeof i2.BubbleTooltipComponent, typeof i3.BubbleTooltipTemplateDirective, typeof i4.LayersComponent, typeof i5.MapComponent, typeof i6.MarkerLayerComponent, typeof i7.MarkerTooltipComponent, typeof i8.MarkerTooltipTemplateDirective, typeof i9.ShapeLayerComponent, typeof i10.ShapeTooltipComponent, typeof i11.ShapeTooltipTemplateDirective, typeof i12.TileLayerComponent]>;
41
- static ɵinj: i0.ɵɵInjectorDeclaration<MapModule>;
42
- }
@@ -1,9 +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 { type PackageMetadata } from '@progress/kendo-licensing';
6
- /**
7
- * @hidden
8
- */
9
- export declare const packageMetadata: PackageMetadata;
@@ -1,31 +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 { OnDestroy, TemplateRef } from '@angular/core';
6
- import { PopupService } from '@progress/kendo-angular-popup';
7
- import { LocalizationService } from '@progress/kendo-angular-l10n';
8
- import { PopupSettings } from './popup-settings.interface';
9
- import * as i0 from "@angular/core";
10
- /**
11
- * @hidden
12
- */
13
- export declare abstract class BaseTooltip implements OnDestroy {
14
- protected popupService: PopupService;
15
- protected localizationService: LocalizationService;
16
- animate: boolean;
17
- style: any;
18
- templateRef: TemplateRef<any>;
19
- popupRef: any;
20
- popupSettings: PopupSettings;
21
- constructor(popupService: PopupService, localizationService: LocalizationService);
22
- get active(): boolean;
23
- show(e: any): void;
24
- hide(): void;
25
- protected onInit(): void;
26
- ngOnDestroy(): void;
27
- protected position(offset: any): any;
28
- private scrollOffset;
29
- static ɵfac: i0.ɵɵFactoryDeclaration<BaseTooltip, never>;
30
- static ɵdir: i0.ɵɵDirectiveDeclaration<BaseTooltip, never, never, { "popupSettings": { "alias": "popupSettings"; "required": false; }; }, {}, never, never, true, never>;
31
- }
@@ -1,9 +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 { ElementRef } from '@angular/core';
6
- /**
7
- * @hidden
8
- */
9
- export declare function bodyFactory(): ElementRef;
@@ -1,44 +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 { TemplateRef } from '@angular/core';
6
- import * as i0 from "@angular/core";
7
- /**
8
- * A directive that sets a [template](link:site.data.urls.angular['templatesyntax'])
9
- * within the `<kendo-map-tooltip>` component for the Map
10
- * [Bubble layer tooltip](https://www.telerik.com/kendo-angular-ui/components/map/layers/bubble#tooltips).
11
- *
12
- * The available inputs for the bubble tooltip template are:
13
- * * `dataItem: any`&mdash;The original data item used to create the bubble.
14
- * * `layerIndex: number`&mdash;The index of the layer for the tooltip.
15
- * * `location: Location`&mdash;The location of the bubble.
16
- * * `value: number`&mdash;The value of the bubble.
17
- *
18
- * @example
19
- * ```typescript
20
- * @Component({
21
- * selector: 'my-app',
22
- * template: `
23
- * <kendo-map>
24
- * <kendo-map-bubble-layer [data]="data">
25
- * <kendo-map-bubble-layer-tooltip>
26
- * <ng-template kendoMapBubbleTooltipTemplate let-dataItem="dataItem" let-value="value">
27
- * <div>{{ dataItem.name }}: {{ value }}</div>
28
- * </ng-template>
29
- * </kendo-map-bubble-layer-tooltip>
30
- * </kendo-map-bubble-layer>
31
- * </kendo-map>
32
- * `
33
- * })
34
- * export class AppComponent {
35
- * public data = [{ name: 'City', value: 100000 }];
36
- * }
37
- * ```
38
- */
39
- export declare class BubbleTooltipTemplateDirective {
40
- templateRef: TemplateRef<any>;
41
- constructor(templateRef: TemplateRef<any>);
42
- static ɵfac: i0.ɵɵFactoryDeclaration<BubbleTooltipTemplateDirective, [{ optional: true; }]>;
43
- static ɵdir: i0.ɵɵDirectiveDeclaration<BubbleTooltipTemplateDirective, "[kendoMapBubbleTooltipTemplate]", never, {}, {}, never, never, true, never>;
44
- }
@@ -1,47 +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 { AfterContentChecked } from '@angular/core';
6
- import { ConfigurationService } from '../common/configuration.service';
7
- import { SettingsComponent } from '../common/settings.component';
8
- import { LayerComponent } from '../map/layer.component';
9
- import { BubbleTooltipTemplateDirective } from './bubble-tooltip-template.directive';
10
- import { TooltipTemplateService } from './tooltip-template.service';
11
- import * as i0 from "@angular/core";
12
- /**
13
- * Represents the Kendo UI BubbleTooltip component for Angular.
14
- *
15
- * Configures the [Bubble Layer Tooltip](https://www.telerik.com/kendo-angular-ui/components/map/layers/bubble#tooltips).
16
- *
17
- * @example
18
- * ```typescript
19
- * @Component({
20
- * selector: 'my-app',
21
- * template: `
22
- * <kendo-map>
23
- * <kendo-map-layer type="bubble" [data]="bubbleData">
24
- * <kendo-map-bubble-layer-tooltip>
25
- * <ng-template kendoMapBubbleTooltipTemplate let-dataItem="dataItem" let-value="value">
26
- * <div>{{ dataItem.name }}: {{ value }}</div>
27
- * </ng-template>
28
- * </kendo-map-bubble-layer-tooltip>
29
- * </kendo-map-layer>
30
- * </kendo-map>
31
- * `
32
- * })
33
- * export class AppComponent {
34
- * public bubbleData = [{ name: 'Population', value: 50000 }];
35
- * }
36
- * ```
37
- */
38
- export declare class BubbleTooltipComponent extends SettingsComponent implements AfterContentChecked {
39
- configurationService: ConfigurationService;
40
- private templateService;
41
- private layer;
42
- bubbleTooltipTemplate: BubbleTooltipTemplateDirective;
43
- constructor(configurationService: ConfigurationService, templateService: TooltipTemplateService, layer: LayerComponent);
44
- ngAfterContentChecked(): void;
45
- static ɵfac: i0.ɵɵFactoryDeclaration<BubbleTooltipComponent, never>;
46
- static ɵcmp: i0.ɵɵComponentDeclaration<BubbleTooltipComponent, "kendo-map-bubble-layer-tooltip", never, {}, {}, ["bubbleTooltipTemplate"], never, true, never>;
47
- }
@@ -1,43 +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 { TemplateRef } from '@angular/core';
6
- import * as i0 from "@angular/core";
7
- /**
8
- * A directive that sets a [template](link:site.data.urls.angular['templatesyntax'])
9
- * within the `<kendo-map-tooltip>` component for the Map
10
- * [Marker layer tooltip](https://www.telerik.com/kendo-angular-ui/components/map/layers/marker#tooltips).
11
- *
12
- * The available inputs for the marker tooltip template are:
13
- * * `title: string`&mdash;The marker title.
14
- * * `layerIndex: number`&mdash;The index of the layer for the tooltip.
15
- * * `location: Location`&mdash;The marker location.
16
- *
17
- * @example
18
- * ```typescript
19
- * @Component({
20
- * selector: 'my-app',
21
- * template: `
22
- * <kendo-map>
23
- * <kendo-map-layer type="marker" [data]="markers">
24
- * <kendo-map-marker-layer-tooltip>
25
- * <ng-template kendoMapMarkerTooltipTemplate let-title="title" let-location="location">
26
- * <div>{{ title }} at {{ location.lat }}, {{ location.lng }}</div>
27
- * </ng-template>
28
- * </kendo-map-marker-layer-tooltip>
29
- * </kendo-map-layer>
30
- * </kendo-map>
31
- * `
32
- * })
33
- * export class AppComponent {
34
- * public markers = [{ title: 'Office', location: [42.6977, 23.3219] }];
35
- * }
36
- * ```
37
- */
38
- export declare class MarkerTooltipTemplateDirective {
39
- templateRef: TemplateRef<any>;
40
- constructor(templateRef: TemplateRef<any>);
41
- static ɵfac: i0.ɵɵFactoryDeclaration<MarkerTooltipTemplateDirective, [{ optional: true; }]>;
42
- static ɵdir: i0.ɵɵDirectiveDeclaration<MarkerTooltipTemplateDirective, "[kendoMapMarkerTooltipTemplate]", never, {}, {}, never, never, true, never>;
43
- }
@@ -1,47 +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 { AfterContentChecked } from '@angular/core';
6
- import { ConfigurationService } from '../common/configuration.service';
7
- import { SettingsComponent } from '../common/settings.component';
8
- import { LayerComponent } from '../map/layer.component';
9
- import { MarkerTooltipTemplateDirective } from './marker-tooltip-template.directive';
10
- import { TooltipTemplateService } from './tooltip-template.service';
11
- import * as i0 from "@angular/core";
12
- /**
13
- * Represents the Kendo UI MarkerTooltip component for Angular.
14
- *
15
- * Configures the [Marker Layer Tooltip](https://www.telerik.com/kendo-angular-ui/components/map/layers/marker#tooltips).
16
- *
17
- * @example
18
- * ```typescript
19
- * @Component({
20
- * selector: 'my-app',
21
- * template: `
22
- * <kendo-map>
23
- * <kendo-map-layer type="marker" [data]="markers">
24
- * <kendo-map-marker-layer-tooltip>
25
- * <ng-template kendoMapMarkerTooltipTemplate let-title="title">
26
- * <div>Marker: {{ title }}</div>
27
- * </ng-template>
28
- * </kendo-map-marker-layer-tooltip>
29
- * </kendo-map-layer>
30
- * </kendo-map>
31
- * `
32
- * })
33
- * export class AppComponent {
34
- * public markers = [{ title: 'Location A' }];
35
- * }
36
- * ```
37
- */
38
- export declare class MarkerTooltipComponent extends SettingsComponent implements AfterContentChecked {
39
- configurationService: ConfigurationService;
40
- private templateService;
41
- private layer;
42
- markerTooltipTemplate: MarkerTooltipTemplateDirective;
43
- constructor(configurationService: ConfigurationService, templateService: TooltipTemplateService, layer: LayerComponent);
44
- ngAfterContentChecked(): void;
45
- static ɵfac: i0.ɵɵFactoryDeclaration<MarkerTooltipComponent, never>;
46
- static ɵcmp: i0.ɵɵComponentDeclaration<MarkerTooltipComponent, "kendo-map-marker-layer-tooltip", never, {}, {}, ["markerTooltipTemplate"], never, true, never>;
47
- }
@@ -1,18 +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 { ViewContainerRef } from '@angular/core';
6
- /**
7
- * Defines the settings for the tooltip popup.
8
- */
9
- export interface PopupSettings {
10
- /**
11
- * Sets the container to which you want to append the popup.
12
- */
13
- appendTo?: ViewContainerRef;
14
- /**
15
- * Sets the class or classes for the popup.
16
- */
17
- popupClass?: string | Array<string> | object | Set<string>;
18
- }