[mapguide-commits] r8205 - sandbox/jng/tiling/Server/src/Services/Mapping

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Sat Jun 14 07:53:22 PDT 2014


Author: jng
Date: 2014-06-14 07:53:22 -0700 (Sat, 14 Jun 2014)
New Revision: 8205

Modified:
   sandbox/jng/tiling/Server/src/Services/Mapping/ServerMappingService.cpp
Log:
Ensure that groups of type MgLayerGroupType::BaseMapFromTileSet are not omitted from a CREATERUNTIMEMAP/DESCRIBERUNTIMEMAP response.

Modified: sandbox/jng/tiling/Server/src/Services/Mapping/ServerMappingService.cpp
===================================================================
--- sandbox/jng/tiling/Server/src/Services/Mapping/ServerMappingService.cpp	2014-06-14 11:45:22 UTC (rev 8204)
+++ sandbox/jng/tiling/Server/src/Services/Mapping/ServerMappingService.cpp	2014-06-14 14:53:22 UTC (rev 8205)
@@ -2085,7 +2085,7 @@
         for (INT32 i = 0; i < groups->GetCount(); i++)
         {
             Ptr<MgLayerGroup> group = groups->GetItem(i);
-            if (group->GetLayerGroupType() != MgLayerGroupType::BaseMap)
+            if (group->GetLayerGroupType() != MgLayerGroupType::BaseMap && group->GetLayerGroupType() != MgLayerGroupType::BaseMapFromTileSet)
                 continue;
 
             Ptr<MgLayerGroup> parent = group->GetGroup();



More information about the mapguide-commits mailing list