@geoql/v-maplibre 1.2.0 → 1.2.1
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 +11 -5
- package/dist/{index-BdU-GZRP.js → index-kNnO8_Zs.js} +1093 -1092
- package/dist/index-kNnO8_Zs.js.map +1 -0
- package/dist/{index-_bcbVwuT.js → index-m5ZKPBwA.js} +4 -4
- package/dist/index-m5ZKPBwA.js.map +1 -0
- package/dist/index.js +1 -1
- package/dist/layers/deckgl/_shared/useDeckOverlay.d.ts +1 -1
- package/dist/layers/deckgl/grid/VLayerDeckglGrid.vue.d.ts +1 -1
- package/dist/layers/deckgl/hexagon/VLayerDeckglHexagon.vue.d.ts +6 -4
- package/package.json +4 -9
- package/dist/index-BdU-GZRP.js.map +0 -1
- package/dist/index-_bcbVwuT.js.map +0 -1
package/README.md
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
[](https://jsr.io/@geoql/v-maplibre)
|
|
7
7
|
[](https://opensource.org/licenses/MIT)
|
|
8
8
|
|
|
9
|
+
> **Using shadcn-vue?** Check out [mapcn-vue](https://mapcn-vue.geoql.in) for copy-paste map components styled with Tailwind CSS.
|
|
10
|
+
|
|
9
11
|
## Features
|
|
10
12
|
|
|
11
13
|
- 🗺️ **Full MapLibre GL Support** - Complete wrapper around MapLibre GL JS
|
|
@@ -213,18 +215,22 @@ import type { Color, PickingInfo } from '@deck.gl/core';
|
|
|
213
215
|
|
|
214
216
|
## Development
|
|
215
217
|
|
|
218
|
+
This package is part of the [v-maplibre monorepo](https://github.com/geoql/v-maplibre).
|
|
219
|
+
|
|
216
220
|
```bash
|
|
217
|
-
#
|
|
221
|
+
# Clone and install (from monorepo root)
|
|
222
|
+
git clone https://github.com/geoql/v-maplibre.git
|
|
223
|
+
cd v-maplibre
|
|
218
224
|
bun install
|
|
219
225
|
|
|
220
|
-
# Build
|
|
221
|
-
bun run build
|
|
226
|
+
# Build this package
|
|
227
|
+
bun run --cwd packages/v-maplibre build
|
|
222
228
|
|
|
223
229
|
# Run tests
|
|
224
230
|
bun run test
|
|
225
231
|
|
|
226
|
-
#
|
|
227
|
-
bun run
|
|
232
|
+
# Watch mode
|
|
233
|
+
bun run dev:lib
|
|
228
234
|
```
|
|
229
235
|
|
|
230
236
|
## License
|