This is a Vue2Leaflet plugin port to provide the leaflet-draw-toolbar control on Leaflet maps in Vue applications.
npm install --save vue2-leaflet-draw-toolbar
With the LDrawToolbar
component loaded into Vue (see below), simply add the
l-draw-toolbar
element inside an l-map
, optionally providing it with an
position
prop to specify any the location of Toolbar.
For example,
<l-map>
<l-draw-toolbar position="topright"/>
<!-- other map components -->
</l-map>
You can either install the control globally within your application at the point where you initially configure Vue, or import the control only within the components that require it.
Where you load and configure your Vue environment,
import Vue from 'vue';
import LDrawToolbar from 'vue2-leaflet-draw-toolbar';
// ...
Vue.component('l-draw-toolbar', LDrawToolbar);
// ...
In the <script>
of a Vue component,
import LDrawToolbar from 'vue2-leaflet-draw-toolbar';
// ...
export default {
// ...
components: {
LDrawToolbar,
// ...
},
// ...
};
The majority of the credit for this plugin goes to the author and contributors of the underlying leaflet-draw-toolbar, and of course the plugin wouldn't be possible without Vue, Leaflet, and Vue2Leaflet.
Huberto Kaiser Filho
This project is licensed under the MIT License - see the LICENSE file for details.