@arenarium/maps 1.3.11 → 1.3.13

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 (3) hide show
  1. package/dist/main.d.ts +7 -21
  2. package/dist/main.js +1023 -1127
  3. package/package.json +2 -2
package/dist/main.d.ts CHANGED
@@ -1,20 +1,12 @@
1
- import { MapBounds } from '@arenarium/maps-core/schemas';
2
- import { MapConfiguration } from '@arenarium/maps-core/schemas';
3
- import { MapCoordinates } from '@arenarium/maps-core/schemas';
4
- import { MapMarkerProperties } from '@arenarium/maps-core/schemas';
5
- import { MapProvider } from '@arenarium/maps-core/schemas';
6
- import { MapProviderEvent } from '@arenarium/maps-core/schemas';
7
- import { MapProviderMarker } from '@arenarium/maps-core/schemas';
8
- import { MapProviderParameters } from '@arenarium/maps-core/schemas';
9
- import { MapViewport } from '@arenarium/maps-core/schemas';
10
-
11
- export { MapBounds }
1
+ import { IMapManager } from '@arenarium/maps-core/declarations/interfaces';
2
+ import { MapConfiguration } from '@arenarium/maps-core/declarations/schemas';
3
+ import { MapMarkerProperties } from '@arenarium/maps-core/declarations/schemas';
4
+ import { IMapProvider as MapProvider } from '@arenarium/maps-core/declarations/interfaces';
5
+ import { IMapProviderMarker as MapProviderMarker } from '@arenarium/maps-core/declarations/interfaces';
12
6
 
13
7
  export { MapConfiguration }
14
8
 
15
- export { MapCoordinates }
16
-
17
- export declare class MapManager {
9
+ export declare class MapManager extends IMapManager {
18
10
  private apiKey;
19
11
  private mapProvider;
20
12
  private mapStateProvider;
@@ -29,7 +21,7 @@ export declare class MapManager {
29
21
  private markerStatesProcessTimeout;
30
22
  private constructor();
31
23
  static create(apiKey: string, mapProvider: MapProvider, mapConfiguration?: MapConfiguration): Promise<MapManager>;
32
- set configuration(configuration: MapConfiguration | undefined);
24
+ update(configuration?: MapConfiguration): void;
33
25
  private clear;
34
26
  private detached;
35
27
  private error;
@@ -52,12 +44,6 @@ export { MapMarkerProperties }
52
44
 
53
45
  export { MapProvider }
54
46
 
55
- export { MapProviderEvent }
56
-
57
47
  export { MapProviderMarker }
58
48
 
59
- export { MapProviderParameters }
60
-
61
- export { MapViewport }
62
-
63
49
  export { }