GCTAG | Examples |
<GCTAG | Attribute
Description Table |
id ="string" value ="string" > No child elements </GCTAG > |
|
Bold: Attribute or child element is required. |
Address Styles | Required | Optional |
---|---|---|
USAddressZ, USSingleHouseZ, USSingleRangeZ | <GCTAG id="STREET" value="xxx"
/> <GCTAG id="Zone" value="xxx" /> |
<GCTAG id="CrossStreet" value="xxx" /> |
USAddress, USSingleHouse, USSingleRange | <GCTAG id="STREET" value="xxx" /> | <GCTAG id="CrossStreet" value="xxx" /> |
Zip4, Zip4Range, Zip5 | <GCTAG id="Zip" value="xxx" /> | |
SingleField | <GCTAG id="Keyfield" value="xxx" /> |
Attribute | Usage | Back to Top |
---|---|---|
id | ID as defined in GCINPUT. | |
value | Values that user inputs for a geocoding request. |
Example 1: | Back to Top |
<?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> |