@progress/kendo-angular-map 19.1.2-develop.2 → 19.1.2-develop.4
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.
- package/directives.d.ts +2 -2
- package/esm2022/directives.mjs +2 -2
- package/esm2022/events/before-reset-event.mjs +2 -1
- package/esm2022/events/map-click-event.mjs +3 -2
- package/esm2022/events/marker-activate-event.mjs +2 -1
- package/esm2022/events/marker-click-event.mjs +2 -1
- package/esm2022/events/marker-created-event.mjs +3 -2
- package/esm2022/events/pan-end-event.mjs +3 -2
- package/esm2022/events/pan-event.mjs +3 -2
- package/esm2022/events/reset-event.mjs +2 -1
- package/esm2022/events/shape-click-event.mjs +3 -2
- package/esm2022/events/shape-created-event.mjs +3 -2
- package/esm2022/events/shape-feature-created-event.mjs +4 -3
- package/esm2022/events/shape-mouse-enter-event.mjs +5 -4
- package/esm2022/events/shape-mouse-leave-event.mjs +5 -4
- package/esm2022/events/zoom-end-event.mjs +3 -2
- package/esm2022/events/zoom-start-event.mjs +4 -4
- package/esm2022/map/bubble-layer.component.mjs +33 -11
- package/esm2022/map/layers.component.mjs +20 -1
- package/esm2022/map/marker-layer.component.mjs +29 -9
- package/esm2022/map/shape-layer.component.mjs +22 -3
- package/esm2022/map/tile-layer.component.mjs +24 -6
- package/esm2022/map.component.mjs +70 -69
- package/esm2022/map.module.mjs +18 -18
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/tooltip/bubble-tooltip-template.directive.mjs +21 -0
- package/esm2022/tooltip/bubble-tooltip.component.mjs +24 -1
- package/esm2022/tooltip/marker-tooltip-template.directive.mjs +21 -0
- package/esm2022/tooltip/marker-tooltip.component.mjs +24 -1
- package/esm2022/tooltip/shape-tooltip-template.directive.mjs +21 -0
- package/esm2022/tooltip/shape-tooltip.component.mjs +24 -1
- package/events/before-reset-event.d.ts +2 -1
- package/events/map-click-event.d.ts +3 -2
- package/events/marker-activate-event.d.ts +2 -1
- package/events/marker-click-event.d.ts +2 -1
- package/events/marker-created-event.d.ts +3 -2
- package/events/pan-end-event.d.ts +3 -2
- package/events/pan-event.d.ts +3 -2
- package/events/reset-event.d.ts +2 -1
- package/events/shape-click-event.d.ts +3 -2
- package/events/shape-created-event.d.ts +3 -2
- package/events/shape-feature-created-event.d.ts +4 -3
- package/events/shape-mouse-enter-event.d.ts +5 -4
- package/events/shape-mouse-leave-event.d.ts +5 -4
- package/events/zoom-end-event.d.ts +3 -2
- package/events/zoom-start-event.d.ts +4 -4
- package/fesm2022/progress-kendo-angular-map.mjs +402 -157
- package/map/bubble-layer.component.d.ts +33 -11
- package/map/layers.component.d.ts +20 -1
- package/map/marker-layer.component.d.ts +29 -9
- package/map/shape-layer.component.d.ts +22 -3
- package/map/tile-layer.component.d.ts +24 -6
- package/map.component.d.ts +70 -69
- package/map.module.d.ts +18 -18
- package/package.json +7 -7
- package/schematics/ngAdd/index.js +1 -1
- package/tooltip/bubble-tooltip-template.directive.d.ts +21 -0
- package/tooltip/bubble-tooltip.component.d.ts +24 -1
- package/tooltip/marker-tooltip-template.directive.d.ts +21 -0
- package/tooltip/marker-tooltip.component.d.ts +24 -1
- package/tooltip/popup-settings.interface.d.ts +3 -3
- package/tooltip/shape-tooltip-template.directive.d.ts +21 -0
- package/tooltip/shape-tooltip.component.d.ts +24 -1
package/events/pan-event.d.ts
CHANGED
|
@@ -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
|
-
*
|
|
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
|
/**
|
package/events/reset-event.d.ts
CHANGED
|
@@ -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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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.
|
|
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
|
|
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
|
-
*
|
|
10
|
+
* Arguments for the `shapeMouseEnter` event.
|
|
11
|
+
* Fires when the mouse enters a shape.
|
|
11
12
|
*
|
|
12
|
-
* > This event
|
|
13
|
-
* >
|
|
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
|
-
*
|
|
10
|
+
* Arguments for the `shapeMouseLeave` event.
|
|
11
|
+
* Fires when the mouse leaves a shape.
|
|
11
12
|
*
|
|
12
|
-
* > This event
|
|
13
|
-
* >
|
|
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
|
-
*
|
|
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
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
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
|
/**
|