|
|
Complex Street Numbers appears to have crucial parts of the street number
dropped in the results from the HTTP Geocoder, with the Geocoder still
reporting Address-Level accuracy
Repro:
Geocode "33w878 Army Trail Rd, Wayne, Il 60184":
http://maps.google.com/maps/geo?client=YourClientString&sensor=false&output=xml&key=YourKey&q=33w878+Army+Trail+Rd%2C+Wayne%2C+Il+60184
Expected:
Returned result maintains "w878" portion of street number, or geocoder
reports something less than "Address-Level" accuracy
Actual:
The following is returned:
<kml>
<Response>
<name>33w878 Army Trail Rd, Wayne, Il 60184</name>
<Status>
<code>200</code>
<request>geocode</request>
</Status>
<Placemark id = "p1">
<address>33 Army Trail Rd, Wayne, IL 60184, USA</address>
<AddressDetails Accuracy = "8">
<Country>
<CountryNameCode>US</CountryNameCode>
<CountryName>USA</CountryName>
<AdministrativeArea>
<AdministrativeAreaName>IL</AdministrativeAreaName>
<Locality>
<LocalityName>Wayne</LocalityName>
<Thoroughfare>
<ThoroughfareName>33 Army Trail
Rd</ThoroughfareName>
</Thoroughfare>
<PostalCode>
<PostalCodeNumber>60184</PostalCodeNumber>
</PostalCode>
</Locality>
</AdministrativeArea>
</Country>
</AddressDetails>
<ExtendedData>
<LatLonBox
north = "41.9558596"
south = "41.9495644"
east = "-88.2783514"
west = "-88.2846466"/>
</ExtendedData>
<Point>
<coordinates>-88.2814990,41.9527120,0</coordinates>
</Point>
</Placemark>
</Response>
</kml>
Notice the "w878" is dropped from the <address> and <ThoroughfareName>
elements, and accuracy is reported as "8" (Address-Level)
*********************************************************
For developers viewing this issue: please click the 'star' icon to be
notified of future changes, and to let us know how many of you are
interested in seeing it resolved.
*********************************************************
|