Rename _ol_interaction_PinchRotate_ to PinchRotate

This commit is contained in:
Frederic Junod
2018-01-11 13:50:35 +01:00
parent 120c42f7a4
commit cb46dd2dbd
2 changed files with 12 additions and 12 deletions

View File

@@ -10,7 +10,7 @@ import DragZoom from './interaction/DragZoom.js';
import _ol_interaction_KeyboardPan_ from './interaction/KeyboardPan.js';
import _ol_interaction_KeyboardZoom_ from './interaction/KeyboardZoom.js';
import MouseWheelZoom from './interaction/MouseWheelZoom.js';
import _ol_interaction_PinchRotate_ from './interaction/PinchRotate.js';
import PinchRotate from './interaction/PinchRotate.js';
import PinchZoom from './interaction/PinchZoom.js';
@@ -70,7 +70,7 @@ export function defaults(opt_options) {
var pinchRotate = options.pinchRotate !== undefined ? options.pinchRotate :
true;
if (pinchRotate) {
interactions.push(new _ol_interaction_PinchRotate_());
interactions.push(new PinchRotate());
}
var pinchZoom = options.pinchZoom !== undefined ? options.pinchZoom : true;