Change a property from private to protected
This commit is contained in:
@@ -23,9 +23,9 @@ ol.interaction.Pointer = function() {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @type {boolean}
|
* @type {boolean}
|
||||||
* @private
|
* @protected
|
||||||
*/
|
*/
|
||||||
this.handlingDownUpSequence_ = false;
|
this.handlingDownUpSequence = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @type {Object.<number, ol.pointer.PointerEvent>}
|
* @type {Object.<number, ol.pointer.PointerEvent>}
|
||||||
@@ -139,25 +139,25 @@ ol.interaction.Pointer.prototype.handleMapBrowserEvent =
|
|||||||
var stopEvent = false;
|
var stopEvent = false;
|
||||||
var view = mapBrowserEvent.map.getView();
|
var view = mapBrowserEvent.map.getView();
|
||||||
this.updateTrackedPointers_(mapBrowserPointerEvent);
|
this.updateTrackedPointers_(mapBrowserPointerEvent);
|
||||||
if (this.handlingDownUpSequence_) {
|
if (this.handlingDownUpSequence) {
|
||||||
if (mapBrowserPointerEvent.type ==
|
if (mapBrowserPointerEvent.type ==
|
||||||
ol.MapBrowserEvent.EventType.POINTERDRAG) {
|
ol.MapBrowserEvent.EventType.POINTERDRAG) {
|
||||||
this.handlePointerDrag(mapBrowserEvent);
|
this.handlePointerDrag(mapBrowserEvent);
|
||||||
} else if (mapBrowserPointerEvent.type ==
|
} else if (mapBrowserPointerEvent.type ==
|
||||||
ol.MapBrowserEvent.EventType.POINTERUP) {
|
ol.MapBrowserEvent.EventType.POINTERUP) {
|
||||||
this.handlingDownUpSequence_ =
|
this.handlingDownUpSequence =
|
||||||
this.handlePointerUp(mapBrowserPointerEvent);
|
this.handlePointerUp(mapBrowserPointerEvent);
|
||||||
if (!this.handlingDownUpSequence_) {
|
if (!this.handlingDownUpSequence) {
|
||||||
view.setHint(ol.ViewHint.INTERACTING, -1);
|
view.setHint(ol.ViewHint.INTERACTING, -1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (mapBrowserPointerEvent.type == ol.MapBrowserEvent.EventType.POINTERDOWN) {
|
if (mapBrowserPointerEvent.type == ol.MapBrowserEvent.EventType.POINTERDOWN) {
|
||||||
var handled = this.handlePointerDown(mapBrowserPointerEvent);
|
var handled = this.handlePointerDown(mapBrowserPointerEvent);
|
||||||
if (!this.handlingDownUpSequence_ && handled) {
|
if (!this.handlingDownUpSequence && handled) {
|
||||||
view.setHint(ol.ViewHint.INTERACTING, 1);
|
view.setHint(ol.ViewHint.INTERACTING, 1);
|
||||||
}
|
}
|
||||||
this.handlingDownUpSequence_ = handled;
|
this.handlingDownUpSequence = handled;
|
||||||
stopEvent = this.shouldStopEvent(handled);
|
stopEvent = this.shouldStopEvent(handled);
|
||||||
}
|
}
|
||||||
return !stopEvent;
|
return !stopEvent;
|
||||||
|
|||||||
Reference in New Issue
Block a user