GCTAG

Used in

REQUEST  

Servers

Geocode  

Parent elements

ADDRESS 

Syntax

<GCTAGAttribute Description Table
     (r)id="string"
     (r)value="string"
>

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

Description

Defines a single part of an address to be geocoded such as a street name or ZIP Code.

Notes


Attribute Descriptions for GCTAG

AttributeUsage
idID as defined in GCINPUT.
valueValues that user inputs for a geocoding request.
Back to top 

Examples for GCTAG

<?xml version="1.0" encoding="UTF-8"?>
<ARCXML version="1.1">
  <REQUEST>
    <GET_GEOCODE maxcandidates="25"  minscore="60">
      <LAYER id="streets" />
      <ADDRESS>
        <GCTAG id="STREET" value="380 New York st" />
        <GCTAG id="Zone" value="92373" />
        <GCTAG id="CrossStreet" value="" />
      </ADDRESS>
    </GET_GEOCODE>
  </REQUEST>      
</ARCXML>

Back to top