GCINPUT

Used in

RESPONSE  

Servers

Geocode  

Parent elements

GCSTYLE 

Syntax

<GCINPUTAttribute Description Table
     (r)description="string"
     (r)id="string"
     (r)label="string"
     (r)width="integer"
     type="text" [text]
>

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

Description

Returns the different ID values needed for an address style.

Notes


Attribute Descriptions for GCINPUT

AttributeUsage
descriptionDescription of field.
idID value for an address style.
labelLabel for address dialog boxes.
typeInformation used by the Java clients for type of output.
widthWidth of input field used in Locate Address dialog box when using ArcIMS Java clients.
Back to top 

Examples for GCINPUT

Example 1: When GET_SERVICE_INFO request is rerouted to the Geocode Server.
<?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>

Back to top