modules/behavior/edit.js (11 lines of code) (raw):

export function behaviorEdit(context) { function behavior() { context.map() .minzoom(context.minEditableZoom()); } behavior.off = function() { context.map() .minzoom(0); }; return behavior; }