1.0.2 • Published 3 years ago

vue2-leaflet-locatecontrol v1.0.2

Weekly downloads
65
License
MIT
Repository
github
Last release
3 years ago

vue2-leaflet-locatecontrol

This is a locatecontrol plugin extension for vue2-leaflet package

Install

npm install --save vue2-leaflet-locatecontrol

Demo

git clone git@github.com:vUdav/vue2-leaflet-locatecontrol.git
cd vue2-leaflet-locatecontrol
yarn
yarn example

# or alternatively using npm
npm install
npm run example

Then you should be able to navigate with your browser and see the demo in http://localhost:4000/

You can see the demo code in the file example.vue

Usage

on <template> add

something like this

<template>
  <v-map :zoom="10" :center="initialLocation">
    <v-tilelayer url="http://{s}.tile.osm.org/{z}/{x}/{y}.png"></v-tilelayer>
    <v-locatecontrol/>
  </v-map>
</template>

on <script> add

option 1

In the same template file, at <script> part, this will make the component available only to the template in this file

import Vue2LeafletLocatecontrol from 'vue2-leaflet-locatecontrol'
...
export default {
  ...
  components: {
    'v-locatecontrol': Vue2LeafletLocatecontrol
    ...
  },
  ...
}

option 2

At main Vue configuration, this will make the component available to all templates in your app

import Vue from 'vue'
import Vue2LeafletLocatecontrol from 'vue2-leaflet-locatecontrol'
...
Vue.component('v-locatecontrol': Vue2LeafletLocatecontrol)

on <style> add

@import "~leaflet/dist/leaflet.css";
@import "https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css";

Develop and build

npm install
npm run build

Author

Valery Liubimov

License

MIT