This 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.
<l-map :zoom=10 :center="[-34.9205, -57.953646]">
<l-protobuf url="https://example.com/my/favorite/endpoint/{z}/{y}/{x}.pbf" :options="options"/>
</l-map>
import { LMap } from 'vue2-leaflet';
import LProtobuf from 'vue2-leaflet-vectorgrid'
export default {
components: {
LMap,
LProtobuf
},
data () {
return {
options: {
vectorTileLayerStyles: { ... },
... // More VectorGrid options.
}
}
}
}
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.