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

Glossary Item Box

Description

Used to symbolize polygon features.

Diagram

SIMPLEPOLYGONSYMBOL Element

Overview

SIMPLEPOLYGONSYMBOL
Used to symbolize polygon features.
backgroundcolor optional
Background color.
boundarycolor optional Restriction of xs:string
Boundary color.
boundarytransparency optional Restriction of xs:double
Value to set percentage of transparency for the polygon boundaries. 1.0 is 0 percent transparent. 0.0 is 100 percent transparent.
boundarytype optional Restriction of xs:string
Boundary type.
boundarywidth optional Restriction of xs:double
Boundary width in points.
fillcolor optional Restriction of xs:string
Fill color.
filltransparency optional Restriction of xs:double
Value to set percentage of transparency for the polygon fill. 1.0 is 0 percent transparent. 0.0 is 100 percent transparent.
filltype optional Restriction of xs:string
Symbol fill type.
stippleheight optional Restriction of xs:int
Height of the stipple in pixels.
stipplepattern optional xs:string
Hexadecimal 8X8 mono bitmap pattern.
stipplewidth optional Restriction of xs:int
Number of columns in the stipple.

Attributes

NameTypeUseDefaultFixedDescription
backgroundcolor optional  Background color.
boundarycolorRestriction of xs:stringoptional  Boundary color.
boundarytransparencyRestriction of xs:doubleoptional1.0 Value to set percentage of transparency for the polygon boundaries. 1.0 is 0 percent transparent. 0.0 is 100 percent transparent.
boundarytypeRestriction of xs:stringoptionalsolid Boundary type.
boundarywidthRestriction of xs:doubleoptional1 Boundary width in points.
fillcolorRestriction of xs:stringoptional  Fill color.
filltransparencyRestriction of xs:doubleoptional1 Value to set percentage of transparency for the polygon fill. 1.0 is 0 percent transparent. 0.0 is 100 percent transparent.
filltypeRestriction of xs:stringoptionalsolid Symbol fill type.
stippleheightRestriction of xs:intoptional8 Height of the stipple in pixels.
stipplepatternxs:stringoptional  Hexadecimal 8X8 mono bitmap pattern.
stipplewidthRestriction of xs:intoptional8 Number of columns in the stipple.

Examples

Restrictions

The stipplepattern, stippleheight, and stipplewidth attrubutes can only be used when the filltype is opaquestipple or stipple.

Source

<xs:element name="SIMPLEPOLYGONSYMBOL" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>Used to symbolize polygon features.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:attribute name="backgroundcolor">
      <xs:annotation>
        <xs:documentation>Background color.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="boundarycolor">
      <xs:annotation>
        <xs:documentation>Boundary color.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="RGB" />
          <xs:enumeration value="HTML RGB" />
          <xs:enumeration value="HTML Name" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute default="1.0" name="boundarytransparency">
      <xs:annotation>
        <xs:documentation>Value to set percentage of transparency for the polygon boundaries. 1.0 is 0 percent transparent. 0.0 is 100 percent transparent.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:double">
          <xs:enumeration value="0.0" />
          <xs:enumeration value="1.0" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute default="solid" name="boundarytype">
      <xs:annotation>
        <xs:documentation>Boundary type.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="solid" />
          <xs:enumeration value="dash" />
          <xs:enumeration value="dot" />
          <xs:enumeration value="dashdot" />
          <xs:enumeration value="dashdotdot" />
          <xs:enumeration value="null" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute default="1" name="boundarywidth">
      <xs:annotation>
        <xs:documentation>Boundary width in points.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:double">
          <xs:minInclusive value="0.0" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="fillcolor">
      <xs:annotation>
        <xs:documentation>Fill color.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="RGB" />
          <xs:enumeration value="HTML RGB" />
          <xs:enumeration value="HTML Name" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute default="1" name="filltransparency">
      <xs:annotation>
        <xs:documentation>Value to set percentage of transparency for the polygon fill. 1.0 is 0 percent transparent. 0.0 is 100 percent transparent.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:double">
          <xs:minInclusive value="0.0" />
          <xs:maxInclusive value="1.0" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute default="solid" name="filltype">
      <xs:annotation>
        <xs:documentation>Symbol fill type.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="solid" />
          <xs:enumeration value="opaquestipple" />
          <xs:enumeration value="stipple" />
          <xs:enumeration value="bdiagonal" />
          <xs:enumeration value="fdiagonal" />
          <xs:enumeration value="cross" />
          <xs:enumeration value="diagcross" />
          <xs:enumeration value="horizontal" />
          <xs:enumeration value="vertical" />
          <xs:enumeration value="gray" />
          <xs:enumeration value="lightgray" />
          <xs:enumeration value="darkgray" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute default="8" name="stippleheight">
      <xs:annotation>
        <xs:documentation>Height of the stipple in pixels.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:int">
          <xs:minInclusive value="1" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="stipplepattern" type="xs:string">
      <xs:annotation>
        <xs:documentation>Hexadecimal 8X8 mono bitmap pattern.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute default="8" name="stipplewidth">
      <xs:annotation>
        <xs:documentation>Number of columns in the stipple.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:int">
          <xs:minInclusive value="1" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
</xs:element>

See Also

© 2013 All Rights Reserved.