@geoql/v-maplibre 1.3.0 → 1.4.0

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/README.md CHANGED
@@ -46,6 +46,9 @@ bun add @deck.gl/core @deck.gl/layers @deck.gl/mapbox
46
46
  bun add @deck.gl/aggregation-layers # Heatmap, Hexagon, Grid
47
47
  bun add @deck.gl/geo-layers # Trips, MVT, Tile, H3
48
48
  bun add @deck.gl/mesh-layers # SimpleMesh, Scenegraph
49
+
50
+ # Raster layers (COG/GeoTIFF)
51
+ bun add @developmentseed/deck.gl-geotiff
49
52
  ```
50
53
 
51
54
  ## Quick Start
@@ -129,6 +132,10 @@ High-performance WebGL visualization layers powered by deck.gl:
129
132
  - `VLayerDeckglSimpleMesh` - 3D meshes
130
133
  - `VLayerDeckglScenegraph` - glTF/GLB models
131
134
 
135
+ **Raster Layers** (requires `@developmentseed/deck.gl-geotiff`)
136
+
137
+ - `VLayerDeckglCOG` - Cloud-Optimized GeoTIFF visualization
138
+
132
139
  ### Control Components
133
140
 
134
141
  - **`VControlNavigation`** - Navigation controls (zoom, rotate)
package/dist/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  import { VControlAttribution, VControlFullscreen, VControlGeolocate, VControlNavigation, VControlScale, VControlLidar } from './controls';
2
- import { VLayerMaplibreCanvas, VLayerMaplibreGeojson, VLayerMaplibreCluster, VLayerMaplibreImage, VLayerMaplibreRaster, VLayerMaplibreVector, VLayerMaplibreVideo, VLayerMaplibrePmtile } from './layers';
2
+ import { VLayerMaplibreCanvas, VLayerMaplibreGeojson, VLayerMaplibreCluster, VLayerMaplibreImage, VLayerMaplibreRaster, VLayerMaplibreVector, VLayerMaplibreVideo, VLayerMaplibrePmtile, VLayerMaplibreRoute } from './layers';
3
3
  import VMap from './map/VMap.vue';
4
4
  import VMarker from './markers/VMarker.vue';
5
5
  import VPopup from './popups/VPopup.vue';
6
- export { VMap, VMarker, VPopup, VLayerMaplibreCanvas, VLayerMaplibreGeojson, VLayerMaplibreCluster, VLayerMaplibreImage, VLayerMaplibreRaster, VLayerMaplibreVector, VLayerMaplibreVideo, VLayerMaplibrePmtile, VControlAttribution, VControlFullscreen, VControlGeolocate, VControlNavigation, VControlScale, VControlLidar, };
6
+ export { VMap, VMarker, VPopup, VLayerMaplibreCanvas, VLayerMaplibreGeojson, VLayerMaplibreCluster, VLayerMaplibreImage, VLayerMaplibreRaster, VLayerMaplibreVector, VLayerMaplibreVideo, VLayerMaplibrePmtile, VLayerMaplibreRoute, VControlAttribution, VControlFullscreen, VControlGeolocate, VControlNavigation, VControlScale, VControlLidar, };
7
7
  export type { LidarControlOptions, ColorScheme, CopcLoadingMode, PointCloudInfo, PointCloudBounds, StreamingProgress, } from './controls';
8
8
  export * from './layers/deckgl';
9
9
  export default VMap;