Removing the tileAnimation map property.

Edit CSS to change the style.
This commit is contained in:
tschaub
2012-01-02 15:49:55 -07:00
parent 78963a5fa8
commit 3c910c8801
4 changed files with 2 additions and 31 deletions

View File

@@ -395,14 +395,6 @@ OpenLayers.Map = OpenLayers.Class({
* the popup from getting too close to the map border.
*/
paddingForPopups : null,
/**
* APIProperty: tileAnimation
* {Boolean} If set to true the olMapTileAnim class is assigned to the
* map div. This, with OpenLayers' default CSS, results in fade-in
* effects when image tiles are displayed.
*/
tileAnimation: true,
/**
* Property: minPx
@@ -508,9 +500,6 @@ OpenLayers.Map = OpenLayers.Class({
}
OpenLayers.Element.addClass(this.div, 'olMap');
if (this.tileAnimation) {
OpenLayers.Element.addClass(this.div, 'olMapTileAnim');
}
// the viewPortDiv is the outermost div we modify
var id = this.id + "_OpenLayers_ViewPort";