Consistency: get/setMaxResolution instead of get/setMaxRes.

This commit is contained in:
ahocevar
2012-06-23 09:10:01 +02:00
parent 76d90428bd
commit cdd9439bbd
2 changed files with 4 additions and 4 deletions

View File

@@ -88,7 +88,7 @@ ol.map = function(opt_arg) {
map.setMaxExtent(ol.bounds(maxExtent)); map.setMaxExtent(ol.bounds(maxExtent));
} }
if (goog.isDef(maxRes)) { if (goog.isDef(maxRes)) {
map.setMaxRes(maxRes); map.setMaxResolution(maxRes);
} }
if (goog.isDef(resolutions)) { if (goog.isDef(resolutions)) {
map.setResolutions(resolutions); map.setResolutions(resolutions);

View File

@@ -231,7 +231,7 @@ ol.Map.prototype.getMaxExtent = function() {
/** /**
* @return {number} the max resolution for the map * @return {number} the max resolution for the map
*/ */
ol.Map.prototype.getMaxRes = function() { ol.Map.prototype.getMaxResolution = function() {
if (goog.isDefAndNotNull(this.maxRes_)) { if (goog.isDefAndNotNull(this.maxRes_)) {
return this.maxRes_; return this.maxRes_;
} else { } else {
@@ -253,7 +253,7 @@ ol.Map.prototype.getResolutionForZoom = function(zoom) {
if (goog.isDefAndNotNull(this.resolutions_)) { if (goog.isDefAndNotNull(this.resolutions_)) {
return this.resolutions_[zoom]; return this.resolutions_[zoom];
} else { } else {
var maxRes = this.getMaxRes(); var maxRes = this.getMaxResolution();
return maxRes/Math.pow(ol.Map.ZOOM_FACTOR, zoom); return maxRes/Math.pow(ol.Map.ZOOM_FACTOR, zoom);
} }
}; };
@@ -343,7 +343,7 @@ ol.Map.prototype.setMaxExtent = function(extent) {
/** /**
* @param {number} res the max resolution for the map * @param {number} res the max resolution for the map
*/ */
ol.Map.prototype.setMaxRes = function(res) { ol.Map.prototype.setMaxResolution = function(res) {
this.maxRes_ = res; this.maxRes_ = res;
}; };