pointer interaction might also receive events that are not pointer events
This commit is contained in:
@@ -129,7 +129,10 @@ ol.interaction.PointerInteraction.prototype.handlePointerDown =
|
|||||||
*/
|
*/
|
||||||
ol.interaction.PointerInteraction.prototype.handleMapBrowserEvent =
|
ol.interaction.PointerInteraction.prototype.handleMapBrowserEvent =
|
||||||
function(mapBrowserEvent) {
|
function(mapBrowserEvent) {
|
||||||
goog.asserts.assertInstanceof(mapBrowserEvent, ol.MapBrowserPointerEvent);
|
if (!(mapBrowserEvent instanceof ol.MapBrowserPointerEvent)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
var mapBrowserPointerEvent =
|
var mapBrowserPointerEvent =
|
||||||
/** @type {ol.MapBrowserPointerEvent} */ (mapBrowserEvent);
|
/** @type {ol.MapBrowserPointerEvent} */ (mapBrowserEvent);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user