[OpenLayers-Commits] r11702 - trunk/openlayers/lib/OpenLayers/Layer

commits-20090109 at openlayers.org commits-20090109 at openlayers.org
Sat Mar 12 12:35:04 EST 2011


Author: bartvde
Date: 2011-03-12 09:35:01 -0800 (Sat, 12 Mar 2011)
New Revision: 11702

Modified:
   trunk/openlayers/lib/OpenLayers/Layer/ArcGISCache.js
Log:
fix up undefined error in ArcGISCache layer, thanks jorix, non-functional change (closes #3030)

Modified: trunk/openlayers/lib/OpenLayers/Layer/ArcGISCache.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Layer/ArcGISCache.js	2011-03-12 16:03:57 UTC (rev 11701)
+++ trunk/openlayers/lib/OpenLayers/Layer/ArcGISCache.js	2011-03-12 17:35:01 UTC (rev 11702)
@@ -271,7 +271,7 @@
             endTileCol: end.x,
             endTileRow: end.y
         };
-        return calculateMaxExtentWithLOD(lod);
+        return this.calculateMaxExtentWithLOD(lod);
    },
     
     /** 



More information about the Commits mailing list