ol.MapBrowserEvent: call browserEvent.{preventDefault|stopPropagation}
This commit is contained in:
@@ -52,6 +52,5 @@ ol.interaction.DoubleClickZoom.prototype.handleMapBrowserEvent =
|
||||
ol.interaction.Interaction.zoomByDelta(map, view, delta, anchor,
|
||||
ol.interaction.DOUBLECLICKZOOM_ANIMATION_DURATION);
|
||||
mapBrowserEvent.preventDefault();
|
||||
browserEvent.preventDefault();
|
||||
}
|
||||
};
|
||||
|
||||
@@ -81,7 +81,6 @@ ol.interaction.KeyboardPan.prototype.handleMapBrowserEvent =
|
||||
ol.coordinate.rotate(delta, rotation);
|
||||
ol.interaction.Interaction.pan(
|
||||
map, view, delta, ol.interaction.KEYBOARD_PAN_DURATION);
|
||||
keyEvent.preventDefault();
|
||||
mapBrowserEvent.preventDefault();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -62,7 +62,6 @@ ol.interaction.KeyboardZoom.prototype.handleMapBrowserEvent =
|
||||
var view = map.getView().getView2D();
|
||||
ol.interaction.Interaction.zoomByDelta(map, view, delta, undefined,
|
||||
ol.interaction.KEYBOARD_ZOOM_DURATION);
|
||||
keyEvent.preventDefault();
|
||||
mapBrowserEvent.preventDefault();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -93,7 +93,6 @@ ol.interaction.MouseWheelZoom.prototype.handleMapBrowserEvent =
|
||||
goog.bind(this.doZoom_, this, map), timeLeft);
|
||||
|
||||
mapBrowserEvent.preventDefault();
|
||||
mouseWheelEvent.preventDefault();
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -1,2 +1,4 @@
|
||||
@exportProperty ol.MapBrowserEvent.prototype.getCoordinate
|
||||
@exportProperty ol.MapBrowserEvent.prototype.getPixel
|
||||
@exportProperty ol.MapBrowserEvent.prototype.preventDefault
|
||||
@exportProperty ol.MapBrowserEvent.prototype.stopPropagation
|
||||
|
||||
@@ -98,6 +98,24 @@ ol.MapBrowserEvent.prototype.isMouseActionButton = function() {
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
ol.MapBrowserEvent.prototype.preventDefault = function() {
|
||||
goog.base(this, 'preventDefault');
|
||||
this.browserEvent.preventDefault();
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
ol.MapBrowserEvent.prototype.stopPropagation = function() {
|
||||
goog.base(this, 'stopPropagation');
|
||||
this.browserEvent.stopPropagation();
|
||||
};
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @param {ol.Map} map The map with the viewport to listen to events on.
|
||||
|
||||
Reference in New Issue
Block a user