CALLOUTMARKERSYMBOL

Used in

CONFIG  REQUEST  RESPONSE  

Servers

Image  

Parent elements

EXACT  OTHER  RANGE  SIMPLELABELRENDERER 

Syntax

<CALLOUTMARKERSYMBOLAttribute Description Table
     antialiasing="true | false" [false]
     backcolor="0,0,0 - 255,255,255" [255,255,255]
     boundarycolor="0,0,0 - 255,255,255" [0,0,0]
     font="Any system font" [Arial]
     fontcolor="0,0,0 - 255,255,255" [0,0,0]
     fontsize="1 - NNN" [12]
     fontstyle="regular | bold | italic | underline | outline | bolditalic" [regular]
     glowing="0,0,0 - 255,255,255"
     interval="0 - NNN" [10]
     outline="0,0,0 - 255,255,255"
     shadow="0,0,0 - 255,255,255"
     transparency="0.0 - 1.0" [1.0]
>

     No Child Elements
</CALLOUTMARKERSYMBOL >

Description

Creates a callout box around each label.

Restrictions


Attribute Descriptions for CALLOUTMARKERSYMBOL

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.
backcolorBackground color using RGB values.
boundarycolorBoundary 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.
intervalDistance between point and callout box; smaller number brings box closer to point.
outlineOutline color using RGB values.
shadowShadow color using RGB values.
transparencyValue to set percentage of transparency. 1.0 is 0 percent transparent. 0.0 is 100 percent transparent.
Back to top 

Examples for CALLOUTMARKERSYMBOL

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="-105.594842" miny="-49.955227" maxx="75.672764" maxy="83.596039" name="Initial_Extent" />
        <MAPUNITS units="decimal_degrees" />
        <FILTERCOORDSYS id="4326" />
        <FEATURECOORDSYS id="4326"/>
      </PROPERTIES>
      <WORKSPACES>
         <SHAPEWORKSPACE name="shp_ws-0" directory="<path to WORLD ESRIDATA>"/>
      </WORKSPACES>
      <LAYER type="featureclass" name="CITIES" visible="true" id="2">
        <DATASET name="CITIES" type="point" workspace="shp_ws-0" />
          <GROUPRENDERER>
            <SIMPLELABELRENDERER field="NAME">
              <CALLOUTMARKERSYMBOL font="Times New Roman" fontstyle="italic" fontsize="24" fontcolor="0,0,255" glowing="255,0,0" shadow="0,0,50" backcolor="0,255,0" interval="10" boundarycolor="255,255,0" transparency="0.8" antialiasing="false" />
            </SIMPLELABELRENDERER>
            <SIMPLERENDERER>
              <SIMPLEMARKERSYMBOL color="127,27,27" type="circle" width="16" />
            </SIMPLERENDERER>
          </GROUPRENDERER>
      </LAYER>
    </MAP>
  </CONFIG>
</ARCXML>

Back to top