How to get the equivalent of the accuracy in Google Map Geocoder V3

Posted by Scorpi0 on Stack Overflow See other posts from Stack Overflow or by Scorpi0
Published on 2010-06-10T14:32:05Z Indexed on 2010/06/10 14:32 UTC
Read the original article Hit count: 286

Filed under:
|
|

Hi, I want to get geocode from google, and I used to do it with the V2 of the API. Google send in the json a pretty good information, the accuracy, reference here : http://code.google.com/intl/fr-FR/apis/maps/documentation/javascript/v2/reference.html#GGeoAddressAccuracy

In V3, Google doesn't seem to send me exactly the same information. There is the array "adresse_component", which seem bigger if the accuracy is better, but not exactly. For example, I have a request accuracy to the street number, the array is of size 8. Another query is accuracy to the route, so less accuracy, but the array is style of size 8, as there is a row 'sublocality', which not appear in the first case. Ok, for a result, Google send a data 'types', which have the 'best' accuracy. This types are here : http://code.google.com/intl/fr-FR/apis/maps/documentation/geocoding/#Types But, there is no real order, and if I wan't the result better than postal_code, I have no clue to how to do that.

So, how can I get this equivalent of the V2 accuracy, whithout some dumb and horrible code ?

© Stack Overflow or respective owner

Related posts about google-maps

Related posts about geocoding