@progress/kendo-angular-map 13.2.0 → 13.2.1-develop.10
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/esm2020/map/bubble-layer.component.mjs +1 -1
- package/esm2020/map/marker-layer.component.mjs +1 -1
- package/esm2020/map/shape-layer.component.mjs +1 -1
- package/esm2020/map/tile-layer.component.mjs +1 -1
- package/esm2020/map.module.mjs +19 -2
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-map.mjs +25 -8
- package/fesm2020/progress-kendo-angular-map.mjs +25 -8
- package/map/bubble-layer.component.d.ts +30 -1
- package/map/marker-layer.component.d.ts +17 -1
- package/map/shape-layer.component.d.ts +7 -1
- package/map/tile-layer.component.d.ts +11 -1
- package/map.module.d.ts +19 -2
- package/package.json +5 -5
- package/schematics/ngAdd/index.js +1 -1
|
@@ -12,7 +12,7 @@ import * as i1 from "../common/configuration.service";
|
|
|
12
12
|
import * as i2 from "../common/collection.service";
|
|
13
13
|
import * as i3 from "@angular/platform-browser";
|
|
14
14
|
/**
|
|
15
|
-
* A vector shape layer for bubble maps.
|
|
15
|
+
* A vector shape layer for bubble maps. [See example](slug:bubble_layers_map).
|
|
16
16
|
*/
|
|
17
17
|
export class BubbleLayerComponent extends LayerComponent {
|
|
18
18
|
constructor(configurationService, collectionService, sanitizer) {
|
|
@@ -12,7 +12,7 @@ import * as i1 from "../common/configuration.service";
|
|
|
12
12
|
import * as i2 from "../common/collection.service";
|
|
13
13
|
import * as i3 from "@angular/platform-browser";
|
|
14
14
|
/**
|
|
15
|
-
* A vector shape layer for bubble maps.
|
|
15
|
+
* A vector shape layer for bubble maps. [See example](slug:marker_layers_map).
|
|
16
16
|
*/
|
|
17
17
|
export class MarkerLayerComponent extends LayerComponent {
|
|
18
18
|
constructor(configurationService, collectionService, sanitizer) {
|
|
@@ -12,7 +12,7 @@ import * as i1 from "../common/configuration.service";
|
|
|
12
12
|
import * as i2 from "../common/collection.service";
|
|
13
13
|
import * as i3 from "@angular/platform-browser";
|
|
14
14
|
/**
|
|
15
|
-
* Defines a vector shape layer bound to GeoJSON data.
|
|
15
|
+
* Defines a vector shape layer bound to GeoJSON data. [See example](slug:shape_layers_map).
|
|
16
16
|
*/
|
|
17
17
|
export class ShapeLayerComponent extends LayerComponent {
|
|
18
18
|
constructor(configurationService, collectionService, sanitizer) {
|
|
@@ -12,7 +12,7 @@ import * as i1 from "../common/configuration.service";
|
|
|
12
12
|
import * as i2 from "../common/collection.service";
|
|
13
13
|
import * as i3 from "@angular/platform-browser";
|
|
14
14
|
/**
|
|
15
|
-
* Defines a vector shape layer bound to GeoJSON data.
|
|
15
|
+
* Defines a vector shape layer bound to GeoJSON data. [See example](slug:tile_layers_map).
|
|
16
16
|
*/
|
|
17
17
|
export class TileLayerComponent extends LayerComponent {
|
|
18
18
|
constructor(configurationService, collectionService, sanitizer) {
|
package/esm2020/map.module.mjs
CHANGED
|
@@ -22,8 +22,25 @@ import * as i12 from "./tooltip/shape-tooltip-template.directive";
|
|
|
22
22
|
import * as i13 from "./map/tile-layer.component";
|
|
23
23
|
import * as i14 from "./tooltip/tooltip-popup.component";
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
26
|
-
|
|
25
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
26
|
+
* definition for the Map component.
|
|
27
|
+
* @example
|
|
28
|
+
*
|
|
29
|
+
* ```ts
|
|
30
|
+
* import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
31
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
|
32
|
+
* import { NgModule } from '@angular/core';
|
|
33
|
+
* import { MapModule } from '@progress/kendo-angular-map';
|
|
34
|
+
* import { AppComponent } from './app.component';
|
|
35
|
+
*
|
|
36
|
+
* @NgModule({
|
|
37
|
+
* declarations: [AppComponent],
|
|
38
|
+
* imports: [BrowserModule, BrowserAnimationsModule, MapModule],
|
|
39
|
+
* bootstrap: [AppComponent]
|
|
40
|
+
* })
|
|
41
|
+
* export class AppModule {}
|
|
42
|
+
*```
|
|
43
|
+
*/
|
|
27
44
|
export class MapModule {
|
|
28
45
|
}
|
|
29
46
|
MapModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: MapModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-map',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '13.2.
|
|
12
|
+
publishDate: 1690460335,
|
|
13
|
+
version: '13.2.1-develop.10',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -305,7 +305,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
305
305
|
}] } });
|
|
306
306
|
|
|
307
307
|
/**
|
|
308
|
-
* A vector shape layer for bubble maps.
|
|
308
|
+
* A vector shape layer for bubble maps. [See example](slug:bubble_layers_map).
|
|
309
309
|
*/
|
|
310
310
|
class BubbleLayerComponent extends LayerComponent {
|
|
311
311
|
constructor(configurationService, collectionService, sanitizer) {
|
|
@@ -691,8 +691,8 @@ const packageMetadata = {
|
|
|
691
691
|
name: '@progress/kendo-angular-map',
|
|
692
692
|
productName: 'Kendo UI for Angular',
|
|
693
693
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
694
|
-
publishDate:
|
|
695
|
-
version: '13.2.
|
|
694
|
+
publishDate: 1690460335,
|
|
695
|
+
version: '13.2.1-develop.10',
|
|
696
696
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
697
697
|
};
|
|
698
698
|
|
|
@@ -1537,7 +1537,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1537
1537
|
}] } });
|
|
1538
1538
|
|
|
1539
1539
|
/**
|
|
1540
|
-
* A vector shape layer for bubble maps.
|
|
1540
|
+
* A vector shape layer for bubble maps. [See example](slug:marker_layers_map).
|
|
1541
1541
|
*/
|
|
1542
1542
|
class MarkerLayerComponent extends LayerComponent {
|
|
1543
1543
|
constructor(configurationService, collectionService, sanitizer) {
|
|
@@ -1580,7 +1580,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1580
1580
|
}] } });
|
|
1581
1581
|
|
|
1582
1582
|
/**
|
|
1583
|
-
* Defines a vector shape layer bound to GeoJSON data.
|
|
1583
|
+
* Defines a vector shape layer bound to GeoJSON data. [See example](slug:shape_layers_map).
|
|
1584
1584
|
*/
|
|
1585
1585
|
class ShapeLayerComponent extends LayerComponent {
|
|
1586
1586
|
constructor(configurationService, collectionService, sanitizer) {
|
|
@@ -1619,7 +1619,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1619
1619
|
}] } });
|
|
1620
1620
|
|
|
1621
1621
|
/**
|
|
1622
|
-
* Defines a vector shape layer bound to GeoJSON data.
|
|
1622
|
+
* Defines a vector shape layer bound to GeoJSON data. [See example](slug:tile_layers_map).
|
|
1623
1623
|
*/
|
|
1624
1624
|
class TileLayerComponent extends LayerComponent {
|
|
1625
1625
|
constructor(configurationService, collectionService, sanitizer) {
|
|
@@ -1849,8 +1849,25 @@ const MAP_DIRECTIVES = [
|
|
|
1849
1849
|
];
|
|
1850
1850
|
|
|
1851
1851
|
/**
|
|
1852
|
-
*
|
|
1853
|
-
|
|
1852
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
1853
|
+
* definition for the Map component.
|
|
1854
|
+
* @example
|
|
1855
|
+
*
|
|
1856
|
+
* ```ts
|
|
1857
|
+
* import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
1858
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
|
1859
|
+
* import { NgModule } from '@angular/core';
|
|
1860
|
+
* import { MapModule } from '@progress/kendo-angular-map';
|
|
1861
|
+
* import { AppComponent } from './app.component';
|
|
1862
|
+
*
|
|
1863
|
+
* @NgModule({
|
|
1864
|
+
* declarations: [AppComponent],
|
|
1865
|
+
* imports: [BrowserModule, BrowserAnimationsModule, MapModule],
|
|
1866
|
+
* bootstrap: [AppComponent]
|
|
1867
|
+
* })
|
|
1868
|
+
* export class AppModule {}
|
|
1869
|
+
*```
|
|
1870
|
+
*/
|
|
1854
1871
|
class MapModule {
|
|
1855
1872
|
}
|
|
1856
1873
|
MapModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: MapModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -305,7 +305,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
305
305
|
}] } });
|
|
306
306
|
|
|
307
307
|
/**
|
|
308
|
-
* A vector shape layer for bubble maps.
|
|
308
|
+
* A vector shape layer for bubble maps. [See example](slug:bubble_layers_map).
|
|
309
309
|
*/
|
|
310
310
|
class BubbleLayerComponent extends LayerComponent {
|
|
311
311
|
constructor(configurationService, collectionService, sanitizer) {
|
|
@@ -691,8 +691,8 @@ const packageMetadata = {
|
|
|
691
691
|
name: '@progress/kendo-angular-map',
|
|
692
692
|
productName: 'Kendo UI for Angular',
|
|
693
693
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
694
|
-
publishDate:
|
|
695
|
-
version: '13.2.
|
|
694
|
+
publishDate: 1690460335,
|
|
695
|
+
version: '13.2.1-develop.10',
|
|
696
696
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
697
697
|
};
|
|
698
698
|
|
|
@@ -1525,7 +1525,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1525
1525
|
}] } });
|
|
1526
1526
|
|
|
1527
1527
|
/**
|
|
1528
|
-
* A vector shape layer for bubble maps.
|
|
1528
|
+
* A vector shape layer for bubble maps. [See example](slug:marker_layers_map).
|
|
1529
1529
|
*/
|
|
1530
1530
|
class MarkerLayerComponent extends LayerComponent {
|
|
1531
1531
|
constructor(configurationService, collectionService, sanitizer) {
|
|
@@ -1568,7 +1568,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1568
1568
|
}] } });
|
|
1569
1569
|
|
|
1570
1570
|
/**
|
|
1571
|
-
* Defines a vector shape layer bound to GeoJSON data.
|
|
1571
|
+
* Defines a vector shape layer bound to GeoJSON data. [See example](slug:shape_layers_map).
|
|
1572
1572
|
*/
|
|
1573
1573
|
class ShapeLayerComponent extends LayerComponent {
|
|
1574
1574
|
constructor(configurationService, collectionService, sanitizer) {
|
|
@@ -1607,7 +1607,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1607
1607
|
}] } });
|
|
1608
1608
|
|
|
1609
1609
|
/**
|
|
1610
|
-
* Defines a vector shape layer bound to GeoJSON data.
|
|
1610
|
+
* Defines a vector shape layer bound to GeoJSON data. [See example](slug:tile_layers_map).
|
|
1611
1611
|
*/
|
|
1612
1612
|
class TileLayerComponent extends LayerComponent {
|
|
1613
1613
|
constructor(configurationService, collectionService, sanitizer) {
|
|
@@ -1828,8 +1828,25 @@ const MAP_DIRECTIVES = [
|
|
|
1828
1828
|
];
|
|
1829
1829
|
|
|
1830
1830
|
/**
|
|
1831
|
-
*
|
|
1832
|
-
|
|
1831
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
1832
|
+
* definition for the Map component.
|
|
1833
|
+
* @example
|
|
1834
|
+
*
|
|
1835
|
+
* ```ts
|
|
1836
|
+
* import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
1837
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
|
1838
|
+
* import { NgModule } from '@angular/core';
|
|
1839
|
+
* import { MapModule } from '@progress/kendo-angular-map';
|
|
1840
|
+
* import { AppComponent } from './app.component';
|
|
1841
|
+
*
|
|
1842
|
+
* @NgModule({
|
|
1843
|
+
* declarations: [AppComponent],
|
|
1844
|
+
* imports: [BrowserModule, BrowserAnimationsModule, MapModule],
|
|
1845
|
+
* bootstrap: [AppComponent]
|
|
1846
|
+
* })
|
|
1847
|
+
* export class AppModule {}
|
|
1848
|
+
*```
|
|
1849
|
+
*/
|
|
1833
1850
|
class MapModule {
|
|
1834
1851
|
}
|
|
1835
1852
|
MapModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: MapModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -10,18 +10,47 @@ import { ConfigurationService } from '../common/configuration.service';
|
|
|
10
10
|
import { LayerComponent } from './layer.component';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
/**
|
|
13
|
-
* A vector shape layer for bubble maps.
|
|
13
|
+
* A vector shape layer for bubble maps. [See example](slug:bubble_layers_map).
|
|
14
14
|
*/
|
|
15
15
|
export declare class BubbleLayerComponent extends LayerComponent implements BubbleLayerOptions {
|
|
16
16
|
protected configurationService: ConfigurationService;
|
|
17
17
|
protected collectionService: CollectionService;
|
|
18
18
|
protected sanitizer: DomSanitizer;
|
|
19
|
+
/**
|
|
20
|
+
* The array of data items for this layer.
|
|
21
|
+
*/
|
|
19
22
|
data?: any[];
|
|
23
|
+
/**
|
|
24
|
+
* The data item field which contains the symbol location.
|
|
25
|
+
*
|
|
26
|
+
* The field should be an array with two numbers - latitude and longitude in decimal degrees.
|
|
27
|
+
*/
|
|
20
28
|
locationField?: string;
|
|
29
|
+
/**
|
|
30
|
+
* The value field for the symbols used to determine their relative size.
|
|
31
|
+
* The data item field should be a number.
|
|
32
|
+
*/
|
|
21
33
|
valueField?: string;
|
|
34
|
+
/**
|
|
35
|
+
* The symbol to use for bubble layers.
|
|
36
|
+
*/
|
|
22
37
|
symbol?: BubbleLayerSymbol;
|
|
38
|
+
/**
|
|
39
|
+
* The default style for symbols.
|
|
40
|
+
*/
|
|
23
41
|
style?: ShapeOptions;
|
|
42
|
+
/**
|
|
43
|
+
* The maximum symbol size for bubble layer symbols.
|
|
44
|
+
*
|
|
45
|
+
* @default 100
|
|
46
|
+
*/
|
|
24
47
|
maxSize?: number;
|
|
48
|
+
/**
|
|
49
|
+
* The minimum symbol size for bubble layer symbols.
|
|
50
|
+
* Setting non-zero value will distort symbol area to value ratio.
|
|
51
|
+
*
|
|
52
|
+
* @default 0
|
|
53
|
+
*/
|
|
25
54
|
minSize?: number;
|
|
26
55
|
constructor(configurationService: ConfigurationService, collectionService: CollectionService, sanitizer: DomSanitizer);
|
|
27
56
|
static ɵfac: i0.ɵɵFactoryDeclaration<BubbleLayerComponent, never>;
|
|
@@ -9,15 +9,31 @@ import { ConfigurationService } from '../common/configuration.service';
|
|
|
9
9
|
import { LayerComponent } from './layer.component';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
/**
|
|
12
|
-
* A vector shape layer for bubble maps.
|
|
12
|
+
* A vector shape layer for bubble maps. [See example](slug:marker_layers_map).
|
|
13
13
|
*/
|
|
14
14
|
export declare class MarkerLayerComponent extends LayerComponent implements MarkerLayerOptions {
|
|
15
15
|
protected configurationService: ConfigurationService;
|
|
16
16
|
protected collectionService: CollectionService;
|
|
17
17
|
protected sanitizer: DomSanitizer;
|
|
18
|
+
/**
|
|
19
|
+
* The array of data items for this layer.
|
|
20
|
+
*/
|
|
18
21
|
data?: any[];
|
|
22
|
+
/**
|
|
23
|
+
* The data item field which contains the marker location.
|
|
24
|
+
*
|
|
25
|
+
* The field should be an array with two numbers - latitude and longitude in decimal degrees.
|
|
26
|
+
*/
|
|
19
27
|
locationField?: string;
|
|
28
|
+
/**
|
|
29
|
+
* The data item field which contains the marker title.
|
|
30
|
+
*/
|
|
20
31
|
titleField?: string;
|
|
32
|
+
/**
|
|
33
|
+
* The default marker shape for data-bound markers. Supported marker shapes are "pinTarget and "pin".
|
|
34
|
+
*
|
|
35
|
+
* Marker shapes are implemented as CSS classes on the marker element (`span.k-marker`). For example "pinTarget" is rendered as `k-marker-pin-target`.
|
|
36
|
+
*/
|
|
21
37
|
shape?: string | 'pinTarget' | 'pin';
|
|
22
38
|
constructor(configurationService: ConfigurationService, collectionService: CollectionService, sanitizer: DomSanitizer);
|
|
23
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<MarkerLayerComponent, never>;
|
|
@@ -10,13 +10,19 @@ import { ConfigurationService } from '../common/configuration.service';
|
|
|
10
10
|
import { LayerComponent } from './layer.component';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
/**
|
|
13
|
-
* Defines a vector shape layer bound to GeoJSON data.
|
|
13
|
+
* Defines a vector shape layer bound to GeoJSON data. [See example](slug:shape_layers_map).
|
|
14
14
|
*/
|
|
15
15
|
export declare class ShapeLayerComponent extends LayerComponent implements ShapeLayerOptions {
|
|
16
16
|
protected configurationService: ConfigurationService;
|
|
17
17
|
protected collectionService: CollectionService;
|
|
18
18
|
protected sanitizer: DomSanitizer;
|
|
19
|
+
/**
|
|
20
|
+
* The array of data items for this layer.
|
|
21
|
+
*/
|
|
19
22
|
data?: any;
|
|
23
|
+
/**
|
|
24
|
+
* The default style for shapes.
|
|
25
|
+
*/
|
|
20
26
|
style?: ShapeOptions;
|
|
21
27
|
constructor(configurationService: ConfigurationService, collectionService: CollectionService, sanitizer: DomSanitizer);
|
|
22
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShapeLayerComponent, never>;
|
|
@@ -9,13 +9,23 @@ import { ConfigurationService } from '../common/configuration.service';
|
|
|
9
9
|
import { LayerComponent } from './layer.component';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
/**
|
|
12
|
-
* Defines a vector shape layer bound to GeoJSON data.
|
|
12
|
+
* Defines a vector shape layer bound to GeoJSON data. [See example](slug:tile_layers_map).
|
|
13
13
|
*/
|
|
14
14
|
export declare class TileLayerComponent extends LayerComponent implements TileLayerOptions {
|
|
15
15
|
protected configurationService: ConfigurationService;
|
|
16
16
|
protected collectionService: CollectionService;
|
|
17
17
|
protected sanitizer: DomSanitizer;
|
|
18
|
+
/**
|
|
19
|
+
* The size of the image tile in pixels.
|
|
20
|
+
*
|
|
21
|
+
* @default 256
|
|
22
|
+
*/
|
|
18
23
|
tileSize: number;
|
|
24
|
+
/**
|
|
25
|
+
* A list of subdomains to use for loading tiles.
|
|
26
|
+
*
|
|
27
|
+
* Alternating between different subdomains allows more requests to be executed in parallel.
|
|
28
|
+
*/
|
|
19
29
|
subdomains: string[];
|
|
20
30
|
/**
|
|
21
31
|
* A function that returns an image URL for each tile position.
|
package/map.module.d.ts
CHANGED
|
@@ -20,8 +20,25 @@ import * as i14 from "./tooltip/tooltip-popup.component";
|
|
|
20
20
|
import * as i15 from "@angular/common";
|
|
21
21
|
import * as i16 from "@progress/kendo-angular-common";
|
|
22
22
|
/**
|
|
23
|
-
*
|
|
24
|
-
|
|
23
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
24
|
+
* definition for the Map component.
|
|
25
|
+
* @example
|
|
26
|
+
*
|
|
27
|
+
* ```ts
|
|
28
|
+
* import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
29
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
|
30
|
+
* import { NgModule } from '@angular/core';
|
|
31
|
+
* import { MapModule } from '@progress/kendo-angular-map';
|
|
32
|
+
* import { AppComponent } from './app.component';
|
|
33
|
+
*
|
|
34
|
+
* @NgModule({
|
|
35
|
+
* declarations: [AppComponent],
|
|
36
|
+
* imports: [BrowserModule, BrowserAnimationsModule, MapModule],
|
|
37
|
+
* bootstrap: [AppComponent]
|
|
38
|
+
* })
|
|
39
|
+
* export class AppModule {}
|
|
40
|
+
*```
|
|
41
|
+
*/
|
|
25
42
|
export declare class MapModule {
|
|
26
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapModule, never>;
|
|
27
44
|
static ɵmod: i0.ɵɵNgModuleDeclaration<MapModule, [typeof i1.BubbleLayerComponent, typeof i2.BubbleTooltipComponent, typeof i3.BubbleTooltipTemplateDirective, typeof i4.LayerTooltipComponent, typeof i5.LayersComponent, typeof i6.MapComponent, typeof i7.MarkerLayerComponent, typeof i8.MarkerTooltipComponent, typeof i9.MarkerTooltipTemplateDirective, typeof i10.ShapeLayerComponent, typeof i11.ShapeTooltipComponent, typeof i12.ShapeTooltipTemplateDirective, typeof i13.TileLayerComponent, typeof i14.TooltipPopupComponent], [typeof i15.CommonModule, typeof i16.ResizeSensorModule], [typeof i1.BubbleLayerComponent, typeof i2.BubbleTooltipComponent, typeof i3.BubbleTooltipTemplateDirective, typeof i4.LayerTooltipComponent, typeof i5.LayersComponent, typeof i6.MapComponent, typeof i7.MarkerLayerComponent, typeof i8.MarkerTooltipComponent, typeof i9.MarkerTooltipTemplateDirective, typeof i10.ShapeLayerComponent, typeof i11.ShapeTooltipComponent, typeof i12.ShapeTooltipTemplateDirective, typeof i13.TileLayerComponent, typeof i14.TooltipPopupComponent]>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-map",
|
|
3
|
-
"version": "13.2.
|
|
3
|
+
"version": "13.2.1-develop.10",
|
|
4
4
|
"description": "Kendo UI Map for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
"@angular/platform-browser": "13 - 16",
|
|
28
28
|
"@progress/kendo-drawing": "^1.17.2",
|
|
29
29
|
"@progress/kendo-licensing": "^1.0.2",
|
|
30
|
-
"@progress/kendo-angular-common": "13.2.
|
|
31
|
-
"@progress/kendo-angular-l10n": "13.2.
|
|
32
|
-
"@progress/kendo-angular-popup": "13.2.
|
|
30
|
+
"@progress/kendo-angular-common": "13.2.1-develop.10",
|
|
31
|
+
"@progress/kendo-angular-l10n": "13.2.1-develop.10",
|
|
32
|
+
"@progress/kendo-angular-popup": "13.2.1-develop.10",
|
|
33
33
|
"rxjs": "^6.4.0 || ^7.0.0"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"tslib": "^2.3.1",
|
|
37
|
-
"@progress/kendo-angular-schematics": "13.2.
|
|
37
|
+
"@progress/kendo-angular-schematics": "13.2.1-develop.10",
|
|
38
38
|
"@progress/kendo-charts": "^1.29.0"
|
|
39
39
|
},
|
|
40
40
|
"schematics": "./schematics/collection.json",
|
|
@@ -10,7 +10,7 @@ function default_1(options) {
|
|
|
10
10
|
// Additional dependencies to install.
|
|
11
11
|
// See https://github.com/telerik/kendo-schematics/issues/28
|
|
12
12
|
peerDependencies: {
|
|
13
|
-
// '@progress/kendo-angular-foo': '13.2.
|
|
13
|
+
// '@progress/kendo-angular-foo': '13.2.1-develop.10'
|
|
14
14
|
} });
|
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
16
16
|
}
|