@arenarium/maps 1.0.214 → 1.0.215
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/index.d.ts +2 -1
- package/dist/index.js +1 -1
- package/dist/main.cjs.js +1 -1
- package/dist/main.d.ts +2 -1
- package/dist/main.es.js +604 -587
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -489,7 +489,8 @@ export declare class MapManager {
|
|
|
489
489
|
private markerPinProcessor;
|
|
490
490
|
private markerTooltipProcessor;
|
|
491
491
|
private markerPopupProcessor;
|
|
492
|
-
constructor(
|
|
492
|
+
private constructor();
|
|
493
|
+
static create(apiKey: string, mapProvider: MapProvider, mapConfiguration?: MapConfiguration): Promise<MapManager>;
|
|
493
494
|
setConfiguration(configuration: MapConfiguration | undefined): void;
|
|
494
495
|
updateMarkers(markers: MapMarker[]): Promise<void>;
|
|
495
496
|
removeMarkers(): void;
|