1.1.1 • Published 4 years ago

vue2-leaflet-vectorgrid v1.1.1

Weekly downloads
132
License
BSD-3-Clause
Repository
github
Last release
4 years ago

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-vectorgrid

Quickstart

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 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/.

Develop and build

npm install
npm run build

Deploy

Pack locally for install testing.

npm pack

Publish release

npm publish

Acknowledgements

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.

1.1.1

4 years ago

1.1.0

4 years ago

1.0.7

4 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago