Lift common composite rendering code into ol.Map

This commit is contained in:
Tom Payne
2012-07-18 00:21:20 +02:00
parent 86335211a6
commit 659ef30802
3 changed files with 10 additions and 19 deletions

View File

@@ -199,15 +199,3 @@ ol.dom.Map.prototype.handleResolutionChanged = function() {
ol.dom.Map.prototype.handleSizeChanged = function() {
goog.base(this, 'handleSizeChanged');
};
/**
* @inheritDoc
*/
ol.dom.Map.prototype.redrawInternal = function() {
goog.base(this, 'redrawInternal');
this.forEachVisibleLayer(function(layer, layerRenderer) {
layerRenderer.redraw();
}, this);
return false;
};