@progress/kendo-charts 1.23.4 → 1.23.6-dev.202205051345
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/dist/npm/map.d.ts +8 -13
- package/package.json +1 -1
package/dist/npm/map.d.ts
CHANGED
|
@@ -8,18 +8,13 @@ export class Map {
|
|
|
8
8
|
layers: any;
|
|
9
9
|
element: HTMLElement;
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
set extent(extent: Extent);
|
|
16
|
-
|
|
17
|
-
get zoom(): number;
|
|
18
|
-
set zoom(level: number);
|
|
19
|
-
|
|
20
|
-
get viewSize(): any;
|
|
11
|
+
center(center?: Location | [number, number]): Location;
|
|
12
|
+
extent(extent?: Extent): Extent;
|
|
13
|
+
zoom(level?: number): number;
|
|
14
|
+
viewSize(): any;
|
|
21
15
|
|
|
22
16
|
constructor(element: any, options: MapOptions, theme: any, context: any);
|
|
17
|
+
destroy(): void;
|
|
23
18
|
|
|
24
19
|
eventOffset(e: any): geometry.Point;
|
|
25
20
|
eventToLayer(e: any): geometry.Point;
|
|
@@ -301,7 +296,7 @@ export interface MapLayerOptions {
|
|
|
301
296
|
/**
|
|
302
297
|
* The attribution for the layer. Accepts HTML.
|
|
303
298
|
*/
|
|
304
|
-
attribution
|
|
299
|
+
attribution?: string;
|
|
305
300
|
|
|
306
301
|
/**
|
|
307
302
|
* Specifies the extent of the region covered by this layer.
|
|
@@ -334,7 +329,7 @@ export interface MapLayerOptions {
|
|
|
334
329
|
*
|
|
335
330
|
* Layers are normally stacked in declaration order (last one is on top).
|
|
336
331
|
*/
|
|
337
|
-
zIndex
|
|
332
|
+
zIndex?: number;
|
|
338
333
|
}
|
|
339
334
|
|
|
340
335
|
/**
|
|
@@ -510,7 +505,7 @@ export interface TileLayerOptions extends MapLayerOptions {
|
|
|
510
505
|
*
|
|
511
506
|
* Alternating between different subdomains allows more requests to be executed in parallel.
|
|
512
507
|
*/
|
|
513
|
-
subdomains
|
|
508
|
+
subdomains?: string[];
|
|
514
509
|
|
|
515
510
|
/**
|
|
516
511
|
* A function that returns an image URL for each tile position.
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Kendo UI platform-independent Charts library",
|
|
4
4
|
"author": "Progress",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
|
-
"version": "1.23.
|
|
6
|
+
"version": "1.23.6-dev.202205051345",
|
|
7
7
|
"main": "dist/npm/main.js",
|
|
8
8
|
"module": "dist/es/main.js",
|
|
9
9
|
"jsnext:main": "dist/es/main.js",
|