You may be able to add drag and drop to move layers around using a third party library. This looks promising: GitHub - Shopify/draggable: The JavaScript Drag & Drop library your grandparents warned you about. I played around with this for a little bit and here's what I ended up with: https://codepen.io/solowt/pen/yPeeeL?editors=1000#0 This isn't working completely. There is some logical problem with how the layers are reordered. I'm not sure where the issue is but if you really want this feature it should be doable with some work. One thing I noticed is that I needed to push each swap event onto an array and then apply the changes after the user stopped dragging the layer element. The logical problem may be involved with how the new index is determined. I'll take a further look if I get a chance.
... View more