| GCINPUT | Examples | 
| <GCINPUT | Attribute 
      Description Table  | 
|      description 
      ="string"  id ="string" label ="string" width ="integer" type ="text" [text] > No Child Elements </GCINPUT >  | |
| Bold: Attribute or child element is 
      required. | |
| Attribute | Usage | Back to Top | 
|---|---|---|
| description | Description of field. | |
| id | ID value for an address style. | |
| label | Label for address dialog boxes. | |
| type | Information used by the Java clients for type of output. | |
| width | Width of input field used in Locate Address dialog box when using ArcIMS Java clients. | |
| Example 1: When GET_SERVICE_INFO request is rerouted to the Geocode Server. | Back to Top | 
| <?xml version="1.0" 
      encoding="UTF-8"?> <ARCXML version="1.1"> <RESPONSE> <SERVICEINFO> <ENVIRONMENT> <LOCALE language="en" country="US" /> <UIFONT name="Arial" color="0,0,0" size="12" style="regular" /> <SEPARATORS cs=" " ts=";"/> <CAPABILITIES forbidden="" disabledtypes=""/> </ENVIRONMENT> <LAYERINFO name="Streets" id="4" > <EXTENSION type="geocode"> <GCSTYLE name="USAddressZ" > <GCINPUT id="STREET" type="text" label="Street" width="10" description="street number, street name and type" /> <GCINPUT id="ZONE" type="text" label="Zone" width="5" description="zone information" /> <GCINPUT id="CROSSSTREET" type="text" label="Cross street" width="10" description="cross street name and type" /> </GCSTYLE> </EXTENSION> </LAYERINFO> </SERVICEINFO> </RESPONSE> </ARCXML>  | |