GCFIELD

Used in

CONFIG  

Parent elements

GCSTYLE 

Syntax

<GCFIELDAttribute Description Table
     (r)id="string"
     (r)name="string"
>

     No Child Elements
</GCFIELD >
(r): Attribute or child element is required.

Description

Defines the fields used for an address style.

Notes


Attribute Descriptions for GCFIELD

AttributeUsage
idThe ID values for an address style. See the examples under GCSTYLE for the values needed for each style.
nameName of field from database.
Back to top 

Examples for GCFIELD

<?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="-71.077092" miny="42.357962" maxx="-71.034511" maxy="42.385263" name="Initial_Extent" />
      <MAPUNITS units="decimal_degrees" />
      <FILTERCOORDSYS id="4326" />
      <FEATURECOORDSYS id="4326"/>
      </PROPERTIES>
      <WORKSPACES>
       <SHAPEWORKSPACE name="shp_ws-64" directory="<path to data>" />
      </WORKSPACES>
      <LAYER type="featureclass" name="Streets" visible="true" id="4">
       <DATASET name="bosstreets" type="line" workspace="shp_ws-64" />
       <SIMPLERENDERER>
         <SIMPLELINESYMBOL type="solid" width="2" color="255,0,0" />
       </SIMPLERENDERER>
       <EXTENSION type="Geocode">
         <GCSTYLE name="USAddressZ">
           <GCFIELD id="FromLeft" name="L_F_ADD" />
           <GCFIELD id="FromRight" name="R_F_ADD" />
           <GCFIELD id="ToLeft" name="L_T_ADD" />
           <GCFIELD id="ToRight" name="R_T_ADD" />
           <GCFIELD id="PreDir" name="PREFIX" />
           <GCFIELD id="PreType" name="PRE_TYPE" />
           <GCFIELD id="StreetName" name="NAME" />
           <GCFIELD id="StreetType" name="TYPE" />
           <GCFIELD id="SufDir" name="SUFFIX" />
           <GCFIELD id="LeftZone" name="ZIPL" />
           <GCFIELD id="RightZone" name="ZIPR" />
         </GCSTYLE>
       </EXTENSION>
      </LAYER>
    </MAP>
  </CONFIG>
</ARCXML>

Back to top