This is a locatecontrol plugin extension for vue2-leaflet package
npm install --save vue2-leaflet-locatecontrol
git clone [email protected]: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
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>
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
...
},
...
}
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)
@import "~leaflet/dist/leaflet.css";
@import "https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css";
npm install
npm run build
MIT