[mapserver-commits] r7839 - branches/branch-5-2/mapserver

svn at osgeo.org svn at osgeo.org
Wed Jul 30 14:30:28 EDT 2008


Author: Assefa
Date: 2008-07-30 14:30:27 -0400 (Wed, 30 Jul 2008)
New Revision: 7839

Modified:
   branches/branch-5-2/mapserver/HISTORY.TXT
   branches/branch-5-2/mapserver/mapogcsld.c
Log:
when creating well known symbols on the fly the pen-up value used should be -99

Modified: branches/branch-5-2/mapserver/HISTORY.TXT
===================================================================
--- branches/branch-5-2/mapserver/HISTORY.TXT	2008-07-30 14:51:47 UTC (rev 7838)
+++ branches/branch-5-2/mapserver/HISTORY.TXT	2008-07-30 18:30:27 UTC (rev 7839)
@@ -13,6 +13,9 @@
 Current Version (SVN branch-5-2)
 --------------------------------
 
+- SLD: when creating well known symbols on the fly the pen-up value
+  used should be -99.
+     
 - Support reading projection parameter for OFC filters (#2712)
 
 - Stop configure execution with an error if path to one of the -config 

Modified: branches/branch-5-2/mapserver/mapogcsld.c
===================================================================
--- branches/branch-5-2/mapserver/mapogcsld.c	2008-07-30 14:51:47 UTC (rev 7838)
+++ branches/branch-5-2/mapserver/mapogcsld.c	2008-07-30 18:30:27 UTC (rev 7839)
@@ -1869,8 +1869,8 @@
             psSymbol->points[psSymbol->numpoints].x = 0.5;
             psSymbol->points[psSymbol->numpoints].y = 1;
             psSymbol->numpoints++;
-            psSymbol->points[psSymbol->numpoints].x = -1;
-            psSymbol->points[psSymbol->numpoints].y = -1;
+            psSymbol->points[psSymbol->numpoints].x = -99;
+            psSymbol->points[psSymbol->numpoints].y = -99;
             psSymbol->numpoints++;
             psSymbol->points[psSymbol->numpoints].x = 0;
             psSymbol->points[psSymbol->numpoints].y = 0.5;
@@ -1896,8 +1896,8 @@
             psSymbol->points[psSymbol->numpoints].x = 1;
             psSymbol->points[psSymbol->numpoints].y = 1;
             psSymbol->numpoints++;
-            psSymbol->points[psSymbol->numpoints].x = -1;
-            psSymbol->points[psSymbol->numpoints].y = -1;
+            psSymbol->points[psSymbol->numpoints].x = -99;
+            psSymbol->points[psSymbol->numpoints].y = -99;
             psSymbol->numpoints++;
             psSymbol->points[psSymbol->numpoints].x = 0;
             psSymbol->points[psSymbol->numpoints].y = 1;



More information about the mapserver-commits mailing list