Description
User to specify reference points in a map for use with the offset and traverse tools.
Diagram
Overview
|
REFPOINTS
User to specify reference points in a map for use with the offset and traverse tools.
|
Sequence
|
POINT 1..∞
When parent element is REFPOINTS, POINT defines a reference point.
|
x required xs:double
The x coordinate of the reference point in map coordinates.
|
|
y required xs:double
The y coordinate of the reference point in map coordinates.
|
|
z required xs:double
The z coordinate of the reference point in map coordinates.
|
|
name required Restriction of xs:string
|
|
|
|
Source
<xs:element name="REFPOINTS" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>User to specify reference points in a map for use with the offset and traverse tools.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" name="POINT">
<xs:annotation>
<xs:documentation>When parent element is REFPOINTS, POINT defines a reference point.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="x" use="required" type="xs:double">
<xs:annotation>
<xs:documentation>The x coordinate of the reference point in map coordinates.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="y" use="required" type="xs:double">
<xs:annotation>
<xs:documentation>The y coordinate of the reference point in map coordinates.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="z" use="required" type="xs:double">
<xs:annotation>
<xs:documentation>The z coordinate of the reference point in map coordinates.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="name" use="required">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="A" />
<xs:enumeration value="B" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
|
See Also