[Vuejs]-Map couldn't be dragged while using Leaflet-side-by-side plugin in Vue2leaflet

0👍

This works for me:

 <LMap
      :zoom="zoom"
      :center="center"
      @update:center="centerUpdated"
      ref="map"
      :watch="true"
      :options="{ zoomControl: false, dragging: mobileDragg, tap: mobileTap }"
   >

Methods:

// Leaflet mobile fix
mobileDragg() {
  return !L.Browser.mobile;
},
// Leaflet mobile fix
mobileTap() {
  return !L.Browser.mobile;
},

Leave a comment