GCINPUT  Examples
 
Used in:  RESPONSE  
Servers: 
Geocode  
Parent elements: 
GCSTYLE  
<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.
 
 

Description:

 

Restrictions:

 

Notes:

 

Attribute Descriptions for GCINPUT:

Attribute Usage Back to Top
description 1 Description of field.
id 2 ID value for an address style.
label 3 Label for address dialog boxes.
type 4 Information used by the Java clients for type of output.
width 5 Width of input field used in Locate Address dialog box when using ArcIMS Java clients.
 

Examples for GCINPUT:

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=";"/>
      </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>