Open the Portico Developer Guide site
PosGateway Schema
GPSCoordinatesType Complex Type
PosGateway Schema : GPSCoordinatesType Complex Type
Namespace http://Hps.Exchange.PosGateway
Diagram
Longitude Element Latitude Element All GPSCoordinatesType Complex Type
Overview
All
Latitude Restriction of xs:decimal
Longitude Restriction of xs:decimal
Used By
GPSCoordinates Element
Source
<xs:complexType name="GPSCoordinatesType" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:all>
    <xs:element name="Latitude">
      <xs:simpleType>
        <xs:restriction base="xs:decimal">
          <xs:minInclusive value="-90" />
          <xs:maxInclusive value="90" />
          <xs:totalDigits value="10" />
          <xs:fractionDigits value="8" />
        </xs:restriction>
      </xs:simpleType>
    </xs:element>
    <xs:element name="Longitude">
      <xs:simpleType>
        <xs:restriction base="xs:decimal">
          <xs:minInclusive value="-180" />
          <xs:maxInclusive value="180" />
          <xs:totalDigits value="11" />
          <xs:fractionDigits value="8" />
        </xs:restriction>
      </xs:simpleType>
    </xs:element>
  </xs:all>
</xs:complexType>
See Also
PosGateway Schema