geolocation-8.x-3.x-dev/modules/geolocation_leaflet/js/MapFeature/LeafletGestureHandling.js
modules/geolocation_leaflet/js/MapFeature/LeafletGestureHandling.js
import { LeafletMapFeature } from "./LeafletMapFeature.js";
export default class LeafletGestureHandling extends LeafletMapFeature {
constructor(settings, map) {
super(settings, map);
L.Util.setOptions(map.leafletMap, {
gestureHandlingOptions: {
duration: 1000,
},
});
map.leafletMap.gestureHandling.enable();
}
}
