[mapguide-commits] r8484 - trunk/MgDev/Common/Schema

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Mon Dec 29 06:27:24 PST 2014


Author: jng
Date: 2014-12-29 06:27:24 -0800 (Mon, 29 Dec 2014)
New Revision: 8484

Modified:
   trunk/MgDev/Common/Schema/RuntimeMap-3.0.0.xsd
Log:
Since there are no signs that Autodesk hasn't branched their "3.0" yet, let's slip this change in while we still have time.

This submission fixes some string data types to numeric ones in the RuntimeMap-3.0.0.xsd schema. 

Modified: trunk/MgDev/Common/Schema/RuntimeMap-3.0.0.xsd
===================================================================
--- trunk/MgDev/Common/Schema/RuntimeMap-3.0.0.xsd	2014-12-29 14:25:02 UTC (rev 8483)
+++ trunk/MgDev/Common/Schema/RuntimeMap-3.0.0.xsd	2014-12-29 14:27:24 UTC (rev 8484)
@@ -26,12 +26,12 @@
             <xs:documentation>The resource id of the Tile Set Definition that this Map Definition is linked from. If this Map Definition does not link to a tile set, this element is omitted</xs:documentation>
           </xs:annotation>
         </xs:element>
-        <xs:element name="TileWidth" type="xs:string" minOccurs="0">
+        <xs:element name="TileWidth" type="xs:integer" minOccurs="0">
           <xs:annotation>
             <xs:documentation>The tile width as defined by the settings in the Tile Set Definition. If this Map Definition does not link to a tile set, this element is omitted</xs:documentation>
           </xs:annotation>
         </xs:element>
-        <xs:element name="TileHeight" type="xs:string" minOccurs="0">
+        <xs:element name="TileHeight" type="xs:integer" minOccurs="0">
           <xs:annotation>
             <xs:documentation>The tile height as defined by the settings in the Tile Set Definition. If this Map Definition does not link to a tile set, this element is omitted</xs:documentation>
           </xs:annotation>
@@ -288,8 +288,8 @@
         </xs:annotation>
         <xs:complexType>
           <xs:sequence>
-            <xs:element name="X" type="xs:string"/>
-            <xs:element name="Y" type="xs:string"/>
+            <xs:element name="X" type="xs:double"/>
+            <xs:element name="Y" type="xs:double"/>
           </xs:sequence>
         </xs:complexType>
       </xs:element>
@@ -299,8 +299,8 @@
         </xs:annotation>
         <xs:complexType>
           <xs:sequence>
-            <xs:element name="X" type="xs:string"/>
-            <xs:element name="Y" type="xs:string"/>
+            <xs:element name="X" type="xs:double"/>
+            <xs:element name="Y" type="xs:double"/>
           </xs:sequence>
         </xs:complexType>
       </xs:element>



More information about the mapguide-commits mailing list