@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 +7 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +4275 -56
- package/dist/index.js.map +1 -1
- package/dist/layers/deckgl/cog/VLayerDeckglCOG.vue.d.ts +166 -0
- package/dist/layers/deckgl/cog/index.d.ts +1 -0
- package/dist/layers/deckgl/index.d.ts +1 -0
- package/dist/layers/index.d.ts +1 -0
- package/dist/layers/maplibre/route/VLayerMaplibreRoute.vue.d.ts +64 -0
- package/dist/layers/maplibre/route/index.d.ts +1 -0
- package/dist/markers/VMarker.vue.d.ts +1 -1
- package/package.json +9 -1
- package/dist/index-BUMO1VV2.js +0 -20895
- package/dist/index-BUMO1VV2.js.map +0 -1
- package/dist/index-Bmyl92lv.js +0 -56335
- package/dist/index-Bmyl92lv.js.map +0 -1
- package/dist/index-D_BMVttU.js +0 -5
- package/dist/index-D_BMVttU.js.map +0 -1
- package/dist/mapbox-overlay-CNSEDf8o.js +0 -5106
- package/dist/mapbox-overlay-CNSEDf8o.js.map +0 -1
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;
|