HASHLINESYMBOL

Used in

CONFIG  REQUEST  RESPONSE  

Servers

Image  Feature  ArcMap  

Parent elements

EXACT  LINE  OBJECT  OTHER  POLYGON  RANGE  SIMPLERENDERER 

Syntax

<HASHLINESYMBOLAttribute Description Table

     When using ArcMap Server:
     color="0,0,0 - 255,255,255" [0,0,0]
     interval="1 - NNN" [8]
     linethickness="1 - NNN" [1]
     tickthickness="1 - NNN" [1]
     type="foreground | background" [foreground]
     width="1 - NNN" [6]

     When using Image or Feature Server:
     antialiasing="true | false" [false]
     color="0,0,0 - 255,255,255" [0,0,0]
     interval="1 - NNN" [8]
     linethickness="1 - NNN" [1]
     overlap="true | false" [true]
     tickthickness="1 - NNN" [1]
     transparency="0.0 - 1.0" [1.0]
     type="foreground | background" [foreground]
     width="1 - NNN" [6]
>

     No Child Elements
</HASHLINESYMBOL >

Description

Line symbol for drawing railroad symbols.

Restrictions


Notes


Attribute Descriptions for HASHLINESYMBOL

AttributeUsage
antialiasingUsed to make edges of labels and symbols smoother. When set to "true", antialiasing is active. Note that the time to generate a map may significantly increase when antialiasing is turned on.
colorSymbol color using RGB values.
intervalDistance between railroad crosshatches in pixels.
linethicknessLine thickness in pixels.
overlapDetermines if labels can overlap this symbol. When "true", labels can overlap. When "false", labels will not overlap the symbol. If labels are not drawing as expected, check if overlap is set to "false" for this symbol or any other symbol in the ArcIMS service.
tickthicknessTick thickness in pixels.
transparencyValue to set percentage of transparency. 1.0 is 0 percent transparent. 0.0 is 100 percent transparent.
typeIf type is "foreground", the symbol draws as a railroad with the crosshash. If type is "background", the symbol draws as a simple line without the crosshash.
widthWidth of the crosshash segments in pixels.
Back to top 

Examples for HASHLINESYMBOL

Example 1: When in CONFIG or REQUEST.
<?xml version="1.0" encoding="UTF-8"?>
<ARCXML version="1.1">
  <CONFIG>
    <ENVIRONMENT>
      <LOCALE country="US" language="en" variant="" />
      <UIFONT color="0,0,0" name="Arial" size="12" style="regular" />
      <SCREEN dpi="96" />
    </ENVIRONMENT>
    <MAP>
      <PROPERTIES>
        <ENVELOPE minx="-124.594842" miny="24.955227" maxx="-67.672764" maxy="49.596039" name="Initial_Extent" />
        <MAPUNITS units="decimal_degrees" />
        <FILTERCOORDSYS id="4326" />
        <FEATURECOORDSYS id="4326"/>
      </PROPERTIES>
      <WORKSPACES>
         <SHAPEWORKSPACE name="shp_ws-0" directory="<path to USA ESRIDATA>"/>
      </WORKSPACES>
      <LAYER type="featureclass" name="ROADS" visible="true" id="1">
        <DATASET name="ROADS" type="line" workspace="shp_ws-0" />
        <SIMPLERENDERER>
          <HASHLINESYMBOL color="127,227,27" linethickness="8" tickthickness="8" transparency="0.5" interval="16" width="16" type="foreground" antialiasing="false" overlap="true" />
        </SIMPLERENDERER>
      </LAYER>
    </MAP>
  </CONFIG>
</ARCXML>

Back to top