stickers clearing on toggling button

This commit is contained in:
muerwre 2018-08-24 17:24:31 +07:00
parent 7fc53444a8
commit 21532ba240
2 changed files with 31 additions and 10 deletions

View file

@ -11,13 +11,13 @@ export class Stickers {
this.layer.addTo(this.map);
}
createOnClick = e => {
if (!e || !e.latlng) return;
const { latlng } = e;
this.createSticker({ latlng });
};
//
// createOnClick = e => {
// if (!e || !e.latlng) return;
//
// const { latlng } = e;
// this.createSticker({ latlng });
// };
createSticker = ({ latlng, sticker }) => {
const marker = new Sticker({
@ -41,4 +41,12 @@ export class Stickers {
this.map.removeLayer(ref.sticker);
this.stickers.splice(index, 1);
};
clearAll = () => {
const target = [...this.stickers];
target.map(sticker => {
this.deleteStickerByReference(sticker);
return true;
});
}
}