[fusion-commits] r2393 - branches/fusion-2.2

svn_fusion at osgeo.org svn_fusion at osgeo.org
Wed Jun 1 10:52:35 EDT 2011


Author: madair
Date: 2011-06-01 07:52:35 -0700 (Wed, 01 Jun 2011)
New Revision: 2393

Removed:
   branches/fusion-2.2/OL-MGOS-useOverlay.patch
Log:
removing file added accidentally

Deleted: branches/fusion-2.2/OL-MGOS-useOverlay.patch
===================================================================
--- branches/fusion-2.2/OL-MGOS-useOverlay.patch	2011-06-01 14:39:15 UTC (rev 2392)
+++ branches/fusion-2.2/OL-MGOS-useOverlay.patch	2011-06-01 14:52:35 UTC (rev 2393)
@@ -1,37 +0,0 @@
-Index: lib/OpenLayers/Layer/MapGuide.js
-===================================================================
---- lib/OpenLayers/Layer/MapGuide.js	(revision 8066)
-+++ lib/OpenLayers/Layer/MapGuide.js	(working copy)
-@@ -24,6 +24,13 @@
-     isBaseLayer: true,
-     
-     /** 
-+     * APIProperty: useOverlay
-+     * {Boolean} flag to indicate if the layer should be retrieved using
-+     * GETMAPIMAGE (default) or using GETDYNAMICOVERLAY requests.
-+     **/
-+    useOverlay: false,
-+    
-+    /** 
-      * APIProperty: singleTile
-      * {Boolean} use tile server or request single tile image. Note that using
-      *    singleTile *and* isBaseLayer false is *not recommend*: it uses synchronous
-@@ -127,6 +134,9 @@
-                            this.params,
-                            this.SINGLE_TILE_PARAMS
-                            );
-+            if (options.useOverlay!=null) {
-+              this.useOverlay = options.useOverlay;
-+            }
-                            
-         } else {
-             //initialize for tiled layers
-@@ -202,7 +212,7 @@
-           params.setviewcentery = center.lat;
-           params.setviewscale = this.map.getScale();
-           
--          if (!this.isBaseLayer) {
-+          if (this.useOverlay) {
-             // in this case the main image operation is remapped to this
-             this.params.operation = "GETDYNAMICMAPOVERLAYIMAGE";
-             



More information about the fusion-commits mailing list