[mapserver-commits] r11988 -
branches/branch-6-0/docs/en/mapscript/php
trunk/docs/en/mapscript/php
svn at osgeo.org
svn at osgeo.org
Thu Aug 4 04:50:51 EDT 2011
Author: havatv
Date: 2011-08-04 01:50:51 -0700 (Thu, 04 Aug 2011)
New Revision: 11988
Modified:
branches/branch-6-0/docs/en/mapscript/php/index.txt
trunk/docs/en/mapscript/php/index.txt
Log:
Added setgeomtransform, getgeomtransform to the styleObj in the PHP mapscript documentation (#2825). Also sorted the elements alphabetically.
Modified: branches/branch-6-0/docs/en/mapscript/php/index.txt
===================================================================
--- branches/branch-6-0/docs/en/mapscript/php/index.txt 2011-08-03 21:56:48 UTC (rev 11987)
+++ branches/branch-6-0/docs/en/mapscript/php/index.txt 2011-08-04 08:50:51 UTC (rev 11988)
@@ -2308,38 +2308,59 @@
Members
...............................................................................
-=============== ====================================================================
+=============== ==================== ==================================================
Type Name
-=============== ====================================================================
-int symbol
-string symbolname
-double size
+=============== ==================== ==================================================
+double angle
+int antialias
+colorObj backgroundcolor
+colorObj color
+double maxsize
+double maxvalue
+double maxwidth
double minsize
-double maxsize
+double minvalue
+double minwidth
int offsetx
int offsety
-int antialias
-colorObj color
-colorObj backgroundcolor
+int opacity (only supported for the AGG driver)
colorObj outlinecolor
+string rangeitem
+double size
+int symbol
+string symbolname
double width
-double minwidth
-double maxwidth
-double angle
-double minvalue
-double maxvalue
-string rangeitem
-int opacity (this parameter is only supported for the AGG driver)
-=============== ====================================================================
+=============== ==================== ==================================================
Methods
...............................................................................
-int updateFromString(string snippet)
- Update a style from a string snippet. Returns MS_SUCCESS/MS_FAILURE.
+void free()
+ Free the object properties and break the internal references.
+ Note that you have to unset the php variable to free totally the
+ resources.
+string getBinding(const stylebinding)
+ Get the attribute binding for a specfiled style property. Returns
+ NULL if there is no binding for this property.
+
+ .. code-block:: php
+
+ $oStyle->setbinding(MS_STYLE_BINDING_COLOR, "FIELD_NAME_COLOR");
+ echo $oStyle->getbinding(MS_STYLE_BINDING_COLOR); // FIELD_NAME_COLOR
+
+string getGeomTransform()
+
+int removeBinding(const stylebinding)
+ Remove the attribute binding for a specfiled style property.
+ Added in MapServer 5.0.
+
+ .. code-block:: php
+
+ $oStyle->removebinding(MS_STYLE_BINDING_COLOR);
+
int set(string property_name, new_value)
Set object property to a new value.
@@ -2354,27 +2375,11 @@
This would bind the color parameter with the data (ie will extract
the value of the color from the field called "FIELD_NAME_COLOR"
-string getBinding(const stylebinding)
- Get the attribute binding for a specfiled style property. Returns NULL if there
- is no binding for this property.
+int setGeomTransform(string value)
- .. code-block:: php
-
- $oStyle->setbinding(MS_STYLE_BINDING_COLOR, "FIELD_NAME_COLOR");
- echo $oStyle->getbinding(MS_STYLE_BINDING_COLOR); // FIELD_NAME_COLOR
+int updateFromString(string snippet)
+ Update a style from a string snippet. Returns MS_SUCCESS/MS_FAILURE.
-int removeBinding(const stylebinding)
- Remove the attribute binding for a specfiled style property.
- Added in MapServer 5.0.
-
- .. code-block:: php
-
- $oStyle->removebinding(MS_STYLE_BINDING_COLOR);
-
-void free()
- Free the object properties and break the internal references.
- Note that you have to unset the php variable to free totally the resources.
-
symbolObj
^^^^^^^^^^^
Modified: trunk/docs/en/mapscript/php/index.txt
===================================================================
--- trunk/docs/en/mapscript/php/index.txt 2011-08-03 21:56:48 UTC (rev 11987)
+++ trunk/docs/en/mapscript/php/index.txt 2011-08-04 08:50:51 UTC (rev 11988)
@@ -2308,38 +2308,59 @@
Members
...............................................................................
-=============== ====================================================================
+=============== ==================== ==================================================
Type Name
-=============== ====================================================================
-int symbol
-string symbolname
-double size
+=============== ==================== ==================================================
+double angle
+int antialias
+colorObj backgroundcolor
+colorObj color
+double maxsize
+double maxvalue
+double maxwidth
double minsize
-double maxsize
+double minvalue
+double minwidth
int offsetx
int offsety
-int antialias
-colorObj color
-colorObj backgroundcolor
+int opacity (only supported for the AGG driver)
colorObj outlinecolor
+string rangeitem
+double size
+int symbol
+string symbolname
double width
-double minwidth
-double maxwidth
-double angle
-double minvalue
-double maxvalue
-string rangeitem
-int opacity (this parameter is only supported for the AGG driver)
-=============== ====================================================================
+=============== ==================== ==================================================
Methods
...............................................................................
-int updateFromString(string snippet)
- Update a style from a string snippet. Returns MS_SUCCESS/MS_FAILURE.
+void free()
+ Free the object properties and break the internal references.
+ Note that you have to unset the php variable to free totally the
+ resources.
+string getBinding(const stylebinding)
+ Get the attribute binding for a specfiled style property. Returns
+ NULL if there is no binding for this property.
+
+ .. code-block:: php
+
+ $oStyle->setbinding(MS_STYLE_BINDING_COLOR, "FIELD_NAME_COLOR");
+ echo $oStyle->getbinding(MS_STYLE_BINDING_COLOR); // FIELD_NAME_COLOR
+
+string getGeomTransform()
+
+int removeBinding(const stylebinding)
+ Remove the attribute binding for a specfiled style property.
+ Added in MapServer 5.0.
+
+ .. code-block:: php
+
+ $oStyle->removebinding(MS_STYLE_BINDING_COLOR);
+
int set(string property_name, new_value)
Set object property to a new value.
@@ -2354,27 +2375,11 @@
This would bind the color parameter with the data (ie will extract
the value of the color from the field called "FIELD_NAME_COLOR"
-string getBinding(const stylebinding)
- Get the attribute binding for a specfiled style property. Returns NULL if there
- is no binding for this property.
+int setGeomTransform(string value)
- .. code-block:: php
-
- $oStyle->setbinding(MS_STYLE_BINDING_COLOR, "FIELD_NAME_COLOR");
- echo $oStyle->getbinding(MS_STYLE_BINDING_COLOR); // FIELD_NAME_COLOR
+int updateFromString(string snippet)
+ Update a style from a string snippet. Returns MS_SUCCESS/MS_FAILURE.
-int removeBinding(const stylebinding)
- Remove the attribute binding for a specfiled style property.
- Added in MapServer 5.0.
-
- .. code-block:: php
-
- $oStyle->removebinding(MS_STYLE_BINDING_COLOR);
-
-void free()
- Free the object properties and break the internal references.
- Note that you have to unset the php variable to free totally the resources.
-
symbolObj
^^^^^^^^^^^
More information about the mapserver-commits
mailing list