Budding_Programmer
Budding_Programmer

Reputation: 15

How do I remove the “Cancel” option from the Draw button on the Leaflet.draw plugin?

As seen in the image below, I’d like to remove the option to cancel a drawing. Here’s my code:

Upvotes: 0

Views: 483

Answers (1)

Falke Design
Falke Design

Reputation: 11338

With that code you can remove the "cancel" button on all shapes:

L.DrawToolbar.prototype.getActions = function (handler) {
        return [
            {
                enabled: handler.completeShape,
                title: L.drawLocal.draw.toolbar.finish.title,
                text: L.drawLocal.draw.toolbar.finish.text,
                callback: handler.completeShape,
                context: handler
            },
            {
                enabled: handler.deleteLastVertex,
                title: L.drawLocal.draw.toolbar.undo.title,
                text: L.drawLocal.draw.toolbar.undo.text,
                callback: handler.deleteLastVertex,
                context: handler
            }
      
        ];
    }

Original code: Doc

Also you can allow the cancel button for handlers when you add a if and test if the correct handler is passed.

PS: For a newer "leaflet-draw" you can use Leaflet-Geoman

Upvotes: 1

Related Questions