Make ol.Overlay autoPan default to false

This commit is contained in:
Éric Lemoine
2015-02-24 15:14:10 +01:00
parent 7a5ad336c6
commit 329edc4ec6
5 changed files with 6 additions and 8 deletions

View File

@@ -97,7 +97,7 @@ ol.Overlay = function(options) {
* @private
* @type {boolean}
*/
this.autoPan_ = goog.isDef(options.autoPan) ? options.autoPan : true;
this.autoPan_ = goog.isDef(options.autoPan) ? options.autoPan : false;
/**
* @private