stickers with ability to drag them

This commit is contained in:
Fedor Katurov 2018-08-15 16:18:49 +07:00
parent 5f30df6f48
commit b8434c32e7
19 changed files with 460 additions and 39 deletions

View file

@ -0,0 +1,21 @@
import L from 'leaflet';
export const DomMarker = L.DivIcon.extend({
initialize: function (options) {
this.options = options;
},
options: {
element: null // a initialized DOM element
// same options as divIcon except for html
},
createIcon: function() {
const { html, element } = this.options;
this._setIconStyles(element, 'icon');
return element;
}
});