Use Alt+Shift to rotate by default, refs #21
This commit is contained in:
@@ -45,7 +45,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Rotate:</td>
|
||||
<td><code>Alt</code>+drag, <code>r</code> to reset</td>
|
||||
<td><code>Alt+Shift</code>+drag, <code>r</code> to reset</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Brightness/contrast:</td>
|
||||
|
||||
@@ -893,8 +893,8 @@ ol.Map.createInteractions_ = function(mapOptions) {
|
||||
var rotate = goog.isDef(mapOptions.rotate) ?
|
||||
mapOptions.rotate : true;
|
||||
if (rotate) {
|
||||
interactions.push(
|
||||
new ol.interaction.DragRotate(ol.interaction.condition.altKeyOnly));
|
||||
interactions.push(new ol.interaction.DragRotate(
|
||||
ol.interaction.condition.altShiftKeysOnly));
|
||||
}
|
||||
|
||||
var doubleClickZoom = goog.isDef(mapOptions.doubleClickZoom) ?
|
||||
|
||||
Reference in New Issue
Block a user