all files / mapbox-gl-draw/src/lib/ double_click_zoom.js

81.82% Statements 9/11
75% Branches 6/8
100% Functions 2/2
100% Lines 7/7
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15   153× 153× 153×       70× 70× 70×        
module.exports = {
  enable(ctx) {
    setTimeout(() => {
      Iif (!ctx.map || !ctx.map.doubleClickZoom) return;
      ctx.map.doubleClickZoom.enable();
    }, 0);
  },
  disable(ctx) {
    setTimeout(() => {
      Iif (!ctx.map || !ctx.map.doubleClickZoom) return;
      ctx.map.doubleClickZoom.disable();
    }, 0);
  }
};