TEXTMARKERSYMBOL

Used in

CONFIG  REQUEST  

Servers

Image  ArcMap  

Parent elements

TEXT 

Syntax

<TEXTMARKERSYMBOLAttribute Description Table

     When using ArcMap Server:
     blockout="0,0,0 - 255,255,255"
     font="Any system font" [Arial]
     fontcolor="0,0,0 - 255,255,255" [0,0,0]
     fontsize="1 - NNN" [10]
     fontstyle="regular | bold | italic | underline | bolditalic" [regular]
     halignment="left | center | right" [right]
     outline="0,0,0 - 255,255,255"
     shadow="0,0,0 - 255,255,255"
     valignment="top | center | bottom" [top]

     When using Image Server:
     angle="0.0 - 360.0" [0]
     antialiasing="true | false" [false]
     blockout="0,0,0 - 255,255,255"
     font="Any system font" [Arial]
     fontcolor="0,0,0 - 255,255,255" [0,0,0]
     fontsize="1 - NNN" [10]
     fontstyle="regular | bold | italic | underline | outline | bolditalic" [regular]
     glowing="0,0,0 - 255,255,255"
     halignment="left | center | right" [right]
     interval="0 - NNN" [0]
     outline="0,0,0 - 255,255,255"
     overlap="true | false" [true]
     printmode="titlecaps | allupper | alllower | none" [none]
     shadow="0,0,0 - 255,255,255"
     transparency="0.0 - 1.0" [1.0]
     valignment="top | center | bottom" [top]
>

     No Child Elements
</TEXTMARKERSYMBOL >

Description

Adds static text to an acetate layer.

Restrictions


Notes


Attribute Descriptions for TEXTMARKERSYMBOL

AttributeUsage
angleAngle of rotation in degrees moving counterclockwise; 0 degrees is horizontal.
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.
blockoutProvides a background behind text. Select color using RGB values.
fontFont name. The name is case sensitive. If font name uses "&", use "&amp;" instead. For example, ESRI Transportation & Civic should be written as ESRI Transportation &amp; Civic. For Feature Services, the font must reside on the client machine or else the system default font is used.
fontcolorFont color using RGB values.
fontsizeFont size.
fontstyleFont style.
glowingGlow color around text using RGB values.
halignmentHorizontal alignment of label compared to label point.
intervalDistance between point and printed label.
outlineOutline color using RGB values.
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.
printmodeDetermines how labels are printed. If "none" is used, no change is made to the label: Welcome to ArcIMS. If "alllower" is used, all letters are lowercase: welcome to arcims. If "allupper" is used, all letters are uppercase: WELCOME TO ARCIMS. If "titlecaps" is used, the first letter of each word in a label is uppercase and everything else is lowercase: Welcome To Arcims.
shadowShadow color using RGB values.
transparencyValue to set percentage of transparency. 1.0 is 0 percent transparent. 0.0 is 100 percent transparent.
valignmentVertical alignment of label compared to label point.
Back to top 

Examples for TEXTMARKERSYMBOL

Example 1: When in an acetate layer in a map configuration file or REQUEST.
<?xml version="1.0" encoding="UTF-8"?>
<ARCXML version="1.1">
  <REQUEST>
    <GET_IMAGE>
      <PROPERTIES>
      <ENVELOPE minx="-180" miny="-90" maxx="180" maxy="90" />
      <IMAGESIZE width="643" height="502" />
      </PROPERTIES>
      <LAYER type="acetate" name="acetate" id="acetate">
      <OBJECT units="pixel">
          <TEXT coords="100 100" label="You are here">
            <TEXTMARKERSYMBOL font="Arial" />
        </TEXT>
      </OBJECT>
      </LAYER>
    </GET_IMAGE>
  </REQUEST>
</ARCXML>

Back to top