A Leaflet.VectorGrid plugin for the vue2-leaflet package
npm install vue2-leaflet-vectorgridThis is a VectorGrid plugin extension for the vue2-leaflet package. Currently only the VectorGrid.protobuf layer is implemented.
npm install vue2-leaflet-vectorgrid
For a complete example, have a look at the demo code in the single-file component example.
``html`
`javascript
import { LMap } from 'vue2-leaflet';
import LProtobuf from 'vue2-leaflet-vectorgrid'
export default {
components: {
LMap,
LProtobuf
},
data () {
return {
options: {
vectorTileLayerStyles: { ... },
... // More VectorGrid options.
}
}
}
}
`Example
There is a simple but complete usage example. First, clone the repo and install
its dependencies.
git clone git@github.com:tesselo/vue2-leaflet-vectorgrid.git
cd vue2-leaflet-vectorgrid
npm install
Also install peer dependencies.
npm install vue leaflet vue2-leaflet
To run the example @vue/cli and @vue/cli-service-global` are required to be
installed globally.
npm install -g @vue/cli @vue/cli-service-global
Start the dev server using the the vue serve utility
vue serve example/app.vue
Then you should be able to navigate with your browser and see the demo at
http://localhost:8080/.
npm install
npm run build
Pack locally for install testing.
npm pack
Publish release
npm publish
Thanks to Aaron Gong and Julián Perelli, the authors of the markercluster plugin and the tracksymbol plugin. Both packages have been used as a basis to build this plugin.