<CALLOUTMARKERSYMBOL | Attribute 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 > |
Attribute | Usage |
---|---|
antialiasing | Used 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. |
backcolor | Background color using RGB values. |
boundarycolor | Boundary color using RGB values. |
font | Font name. The name is case sensitive. If font name uses "&", use "&" instead. For example, ESRI Transportation & Civic should be written as ESRI Transportation & Civic. For Feature Services, the font must reside on the client machine or else the system default font is used. |
fontcolor | Font color using RGB values. |
fontsize | Font size. |
fontstyle | Font style. |
glowing | Glow color around text using RGB values. |
interval | Distance between point and callout box; smaller number brings box closer to point. |
outline | Outline color using RGB values. |
shadow | Shadow color using RGB values. |
transparency | Value to set percentage of transparency. 1.0 is 0 percent transparent. 0.0 is 100 percent transparent. |
<?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> |