@arenarium/maps 1.0.159 → 1.0.161

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 CHANGED
@@ -525,19 +525,19 @@ export declare class MapManager {
525
525
  private processMarkerData;
526
526
  private log;
527
527
  }
528
- export interface MapLibreClass {
528
+ export interface MaplibreMapClass {
529
529
  new (options: maplibregl.MapOptions): maplibregl.Map;
530
530
  }
531
- export interface MapLibreMarkerClass {
531
+ export interface MaplibreMarkerClass {
532
532
  new (options: maplibregl.MarkerOptions): maplibregl.Marker;
533
533
  }
534
- export declare class MapLibreProvider implements MapProvider {
534
+ export declare class MaplibreProvider implements MapProvider {
535
535
  static Parameters: MapProviderParameters;
536
536
  parameters: MapProviderParameters;
537
537
  private MapClass;
538
538
  private MapMarkerClass;
539
539
  private map;
540
- constructor(mapClass: MapLibreClass, mapMarkerClass: MapLibreMarkerClass, options: maplibregl.MapOptions);
540
+ constructor(mapClass: MaplibreMapClass, mapMarkerClass: MaplibreMarkerClass, options: maplibregl.MapOptions);
541
541
  getMap(): maplibregl.Map;
542
542
  getContainer(): HTMLElement;
543
543
  getZoom(): number;
@@ -545,8 +545,8 @@ export declare class MapLibreProvider implements MapProvider {
545
545
  panBy(x: number, y: number): void;
546
546
  createMarker(element: HTMLElement, lat: number, lng: number): MapProviderMarker;
547
547
  }
548
- export declare const MapLibreDarkStyle: maplibregl.StyleSpecification;
549
- export declare const MapLibreLightStyle: maplibregl.StyleSpecification;
548
+ export declare const MaplibreDarkStyle: maplibregl.StyleSpecification;
549
+ export declare const MaplibreLightStyle: maplibregl.StyleSpecification;
550
550
  export interface GoogleMapsClass {
551
551
  new (container: HTMLElement, options: google.maps.MapOptions): google.maps.Map;
552
552
  }