@fusioncontact/vue2-leaflet-draw-toolbar
v0.1.3
Published
<a href="https://www.npmjs.com/package/vue2-leaflet-draw-toolbar.svg"> <img src="https://img.shields.io/npm/dw/vue2-leaflet-draw-toolbar.svg" alt="Downloads"> </a> <a href="https://www.npmjs.com/package/vue2-leaflet-draw-toolbar.svg"> <img src="ht
Downloads
11
Readme
vue2-leaflet-draw
⚠️ This is a fork and an adaptation of the package https://github.com/hubertokf/vue2-leaflet-draw made for Fusion-Contact ⚠️
This is a Vue2Leaflet plugin port to provide the leaflet-draw-toolbar control on Leaflet maps in Vue applications.
Installation
npm install --save vue2-leaflet-draw-toolbar
Usage
Adding the component to a map
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>
Loading the Vue component
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.
Option 1: Global install
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);
// ...
Option 2: Local import
In the <script>
of a Vue component,
import LDrawToolbar from 'vue2-leaflet-draw-toolbar';
// ...
export default {
// ...
components: {
LDrawToolbar,
// ...
},
// ...
};
Todo
- [x] Create a Vue2 component from leaflet-draw-toolbar
- [x] Deploy to npm
- [ ] Pass events to Vue2 component
- [ ] Finish edit mode on map click
- [ ] Prevent to create another toolbar on layer click
- [ ] Create Vue2 component for each toolbar component and action
- [ ] Add option to show button to save
- [ ] Add option to create menus and submenus
Credit
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.
Plugin author
Huberto Kaiser Filho
License
This project is licensed under the MIT License - see the LICENSE file for details.