<complexType name="GeographicPointType"> <attribute name="longitude" use="required"> <simpleType> <restriction base="double"> <minInclusive value="-180.0"/> <maxInclusive value="180.0"/> </restriction> </simpleType> </attribute> <attribute name="latitude" use="required"> <simpleType> <restriction base="double"> <minInclusive value="-90.0"/> <maxInclusive value="90.0"/> </restriction> </simpleType> </attribute> <attribute name="altitude" type="double" use="optional"/> </complexType> |