[mapguide-commits] r9528 - sandbox/jng/mvt/Server/src/Services/Rendering

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Fri May 31 07:39:36 PDT 2019


Author: jng
Date: 2019-05-31 07:39:36 -0700 (Fri, 31 May 2019)
New Revision: 9528

Modified:
   sandbox/jng/mvt/Server/src/Services/Rendering/RenderingOperationFactory.cpp
Log:
Wire up actual RenderTileMVT operation on the server-side

Modified: sandbox/jng/mvt/Server/src/Services/Rendering/RenderingOperationFactory.cpp
===================================================================
--- sandbox/jng/mvt/Server/src/Services/Rendering/RenderingOperationFactory.cpp	2019-05-31 14:33:22 UTC (rev 9527)
+++ sandbox/jng/mvt/Server/src/Services/Rendering/RenderingOperationFactory.cpp	2019-05-31 14:39:36 UTC (rev 9528)
@@ -141,7 +141,17 @@
                 L"MgRenderingOperationFactory.GetOperation", __LINE__, __WFILE__, NULL, L"", NULL);
         }
         break;
-
+    case MgRenderingServiceOpId::RenderTileMVT:
+        switch (VERSION_NO_PHASE(operationVersion))
+        {
+        case VERSION_SUPPORTED(4, 0):
+            handler.reset(new MgOpRenderTileMVT());
+            break;
+        default:
+            throw new MgInvalidOperationVersionException(
+                L"MgRenderingOperationFactory.GetOperation", __LINE__, __WFILE__, NULL, L"", NULL);
+        }
+        break;
     case MgRenderingServiceOpId::RenderDynamicOverlay:
         switch (VERSION_NO_PHASE(operationVersion))
         {



More information about the mapguide-commits mailing list