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

Glossary Item Box

Description

Used to define the line fill symbol in a complex polygon symbol.

Diagram

SIMPLELINESYMBOL Element GROUPSYMBOL Element COMPLEXLINESYMBOL Element Sequence LINEFILL Element

Overview

LINEFILL
Used to define the line fill symbol in a complex polygon symbol.
angle optional Restriction of xs:double
Line angle in degrees clockwise.
separation optional Restriction of xs:int
Line symbol separation within fill in points.
offset optional xs:int
The offset in points (approx. 1/72 inch) the line fill will be shown away from the geometry it represents. The offset can be a positive (above/left) or negative (below/right) number.
Sequence
COMPLEXLINESYMBOL
Used to symbolize line features. Provides additional symbology options beyond SIMPLELINESYMBOL.
GROUPSYMBOL
Used to symbolize features with multiple symbols acting as a single symbol (e.g., a freeway line symbol consists of a group of 3 line symbols).
SIMPLELINESYMBOL
Used to symbolize line features.

Attributes

NameTypeUseDefaultFixedDescription
angleRestriction of xs:doubleoptional0.0 Line angle in degrees clockwise.
separationRestriction of xs:intoptional5 Line symbol separation within fill in points.
offsetxs:intoptional0 The offset in points (approx. 1/72 inch) the line fill will be shown away from the geometry it represents. The offset can be a positive (above/left) or negative (below/right) number.

Examples

Source

<xs:element name="LINEFILL" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>Used to define the line fill symbol in a complex polygon symbol.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="COMPLEXLINESYMBOL" />
      <xs:element ref="GROUPSYMBOL" />
      <xs:element ref="SIMPLELINESYMBOL" />
    </xs:sequence>
    <xs:attribute default="0.0" name="angle">
      <xs:annotation>
        <xs:documentation>Line angle in degrees clockwise.</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 default="5" name="separation">
      <xs:annotation>
        <xs:documentation>Line symbol separation within fill in points.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:int">
          <xs:minInclusive value="1" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute default="0" name="offset" type="xs:int">
      <xs:annotation>
        <xs:documentation>The offset in points (approx. 1/72 inch) the line fill will be shown away from the geometry it represents. The offset can be a positive (above/left) or negative (below/right) number.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
</xs:element>

See Also

© 2013 All Rights Reserved.