[mapserver-commits] r11465 - trunk/mapserver/mapscript/php

svn at osgeo.org svn at osgeo.org
Tue Apr 5 11:18:00 EDT 2011


Author: aboudreault
Date: 2011-04-05 08:18:00 -0700 (Tue, 05 Apr 2011)
New Revision: 11465

Modified:
   trunk/mapserver/mapscript/php/label.c
Log:
Added label->maxoverlapangle in php/mapscript

Modified: trunk/mapserver/mapscript/php/label.c
===================================================================
--- trunk/mapserver/mapscript/php/label.c	2011-04-05 15:15:06 UTC (rev 11464)
+++ trunk/mapserver/mapscript/php/label.c	2011-04-05 15:18:00 UTC (rev 11465)
@@ -111,6 +111,7 @@
     else IF_GET_LONG("align", php_label->label->align)
     else IF_GET_LONG("maxlength", php_label->label->maxlength)
     else IF_GET_LONG("minlength", php_label->label->minlength)
+    else IF_GET_LONG("maxoverlapangle", php_label->label->maxoverlapangle)
     else IF_GET_LONG("priority", php_label->label->priority)
     else IF_GET_OBJECT("color", mapscript_ce_color, php_label->color, &php_label->label->color) 
     else IF_GET_OBJECT("outlinecolor", mapscript_ce_color, php_label->outlinecolor, &php_label->label->outlinecolor) 
@@ -165,6 +166,7 @@
     else IF_SET_LONG("align", php_label->label->align, value)
     else IF_SET_LONG("maxlength", php_label->label->maxlength, value)
     else IF_SET_LONG("minlength", php_label->label->minlength, value)
+    else IF_SET_LONG("maxoverlapangle", php_label->label->maxoverlapangle, value)
     else IF_SET_LONG("priority", php_label->label->priority, value)
     else if ( (STRING_EQUAL("color", property)) ||
               (STRING_EQUAL("outlinecolor", property)) ||



More information about the mapserver-commits mailing list