@progress/kendo-charts 1.23.6 → 1.24.0-dev.202206130925

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 CHANGED
@@ -26,6 +26,7 @@ export class Map {
26
26
  resize(force?: boolean): void;
27
27
  setOptions(options: any): void;
28
28
  viewToLocation(point: geometry.Point | [number, number], zoom: number): Location;
29
+ hideTooltip(): void;
29
30
  }
30
31
 
31
32
  /**
@@ -509,6 +510,8 @@ export interface TileLayerOptions extends MapLayerOptions {
509
510
 
510
511
  /**
511
512
  * A function that returns an image URL for each tile position.
513
+ *
514
+ * @return the URL for the tile.
512
515
  */
513
516
  urlTemplate: (args: TileUrlTemplateArgs) => string;
514
517
  }