ADDRESS

Used in

REQUEST  

Servers

Geocode  

Parent elements

GET_GEOCODE 

Syntax

<ADDRESS >
     No Attributes

     (r)(m)<GCTAG... />

</ADDRESS >
(r): Attribute or child element is required.
(m):  Child element can be used multiple times.

Description

Defines framework for geocoding an address in a GET_GEOCODE request.

Notes

 

Examples for ADDRESS

<?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