<xs:complexType name="Point">
<xs:annotation>
<xs:documentation>The coordinates of a point with an optional altitude (used by element 'Distribution'). Required attributes are the 'geodetic_datum' used to indicate the geodetic datum (also called 'map datum', for example Google's KML uses 'WGS84'). Attribute 'alt_unit' is the unit for the altitude (e.g. 'meter').</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="lat" type="xs:decimal"/>
<xs:element name="long" type="xs:decimal"/>
<xs:element name="alt" type="xs:decimal" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="geodetic_datum" type="xs:token" use="required"/>
<xs:attribute name="alt_unit" type="xs:token"/>
</xs:complexType> |