Map Schema
ROTATION Element
See Also  Send comments on this topic.
Map Schema : ROTATION Element

Glossary Item Box

Description

Used to define rotation properties for the map in an ArcPad map file (*.apm).

Diagram

ROTATION Element

Overview

ROTATION
Used to define rotation properties for the map in an ArcPad map file (*.apm).
angle optional Restriction of xs:double
Map rotation angle, expressed as an integer from 0 to 360.
autorotate optional Restriction of xs:string
Flag that determines if automatic map rotation is on (true) or off (false).

Attributes

NameTypeUseDefaultFixedDescription
angleRestriction of xs:doubleoptional0 Map rotation angle, expressed as an integer from 0 to 360.
autorotateRestriction of xs:stringoptionalfalse Flag that determines if automatic map rotation is on (true) or off (false).

Source

<xs:element name="ROTATION" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>Used to define rotation properties for the map in an ArcPad map file (*.apm).</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:attribute name="angle" default="0">
      <xs:annotation>
        <xs:documentation>Map rotation angle, expressed as an integer from 0 to 360.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:double">
          <xs:minInclusive value="0.0" />
          <xs:maxInclusive value="360.0" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="autorotate" default="false">
      <xs:annotation>
        <xs:documentation>Flag that determines if automatic map rotation is on (true) or off (false).</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="true" />
          <xs:enumeration value="false" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
</xs:element>

See Also

© 2013 All Rights Reserved.