Polygons
<?xml version="1.0" encoding="UTF-8"?>
<symbolInstance>
<values> … </values>
<polylineData> … </polylineData>
</symbolInstance>
<?xml version="1.0" encoding="UTF-8"?>
<polylineData>
<polylinePoint x="4.135500" y="1.713000"/>
<polylinePoint x="-4.135500" y="1.713000"/>
<polylinePoint x="-4.135500" y="-1.286000"/>
<polylinePoint x="-1.516500" y="-1.286000"/>
<polylinePoint x="-1.516500" y="-1.713000"/>
<polylinePoint x="4.135500" y="-1.713000"/>
</polylineData>
Polygon coordinates are stored in a <polylineData>
-element under the polygon <symbolInstance>
. The <polylineData>
-element contains one <polylinePoint>
for each point of the polygon, specifying its x and y coordinates.
For more information on polygons, see also SymbolInstance.
Attribute |
Description |
---|---|
|
The horizontal position of the point relatively to the center of the floor, in meters, as a floating point number. |
|
The vertical position of the corner relatively to the center of the floor, in meters, as a floating point number. |
XML SchemaCopied!
<xs:element name="polylineData">
<xs:complexType>
<xs:sequence>
<xs:element name="polylinePoint" maxOccurs="unbounded">
<xs:complexType>
<xs:attribute name="x" type="xs:decimal" use="required"/>
<xs:attribute name="y" type="xs:decimal" use="required"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>