vue2-leaflet-vectorgrid
v1.1.1
Published
A Leaflet.VectorGrid plugin for the vue2-leaflet package
Readme
vue2-leaflet-vectorgrid
This is a VectorGrid plugin extension for the vue2-leaflet package. Currently only the VectorGrid.protobuf layer is implemented.
Install
npm install vue2-leaflet-vectorgridQuickstart
For a complete example, have a look at the demo code in the single-file component example.
On <template> add something like this
<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>on <script> add
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 [email protected]:tesselo/vue2-leaflet-vectorgrid.git
cd vue2-leaflet-vectorgrid
npm installAlso install peer dependencies.
npm install vue leaflet vue2-leafletTo run the example @vue/cli and @vue/cli-service-global are required to be
installed globally.
npm install -g @vue/cli @vue/cli-service-globalStart the dev server using the the vue serve utility
vue serve example/app.vueThen you should be able to navigate with your browser and see the demo at http://localhost:8080/.
Develop and build
npm install
npm run buildDeploy
Pack locally for install testing.
npm packPublish release
npm publishAcknowledgements
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.
