@maplibre-yaml/core 0.2.0 → 0.2.2

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.
@@ -1,6 +1,6 @@
1
1
  import { R as RootSchema, M as MapBlockSchema, S as ScrollytellingBlockSchema, L as LayerSchema, a as LegendConfigSchema, b as MapConfigSchema, c as LayerSourceSchema, C as ControlsConfigSchema } from './page.schema-Cad2FFqh.js';
2
2
  import { z } from 'zod';
3
- import maplibregl, { Map } from 'maplibre-gl';
3
+ import { Map, LngLat } from 'maplibre-gl';
4
4
 
5
5
  /**
6
6
  * @file YAML parser for MapLibre configuration files
@@ -516,12 +516,12 @@ interface MapRendererEvents {
516
516
  'layer:click': {
517
517
  layerId: string;
518
518
  feature: any;
519
- lngLat: maplibregl.LngLat;
519
+ lngLat: LngLat;
520
520
  };
521
521
  'layer:hover': {
522
522
  layerId: string;
523
523
  feature: any;
524
- lngLat: maplibregl.LngLat;
524
+ lngLat: LngLat;
525
525
  };
526
526
  }
527
527
  /**