I'm using the google api http://maps.googleapis.com/maps/api/geocode/json?address
where we passed the address to return to Latitude and Longitude.
The problem is: If you type for example this street address muller carioba, it will not return any results and this address comes from the postal code base. However, typing the same address on the google maps page returns it.
Does anyone know how to improve this search?
Thank you.
EDITING THE QUESTION:
I am using the search tool of the postal code, that is, searching for the zip code: 04291-020 the return is Rua Muller Carioba. Note that there are 2 letters L in the name. Placing the same address in the Google URL to search for the coordinates:
http://maps.googleapis.com/maps/api/geocode/json?address=Rua Muller Carioba, 100, Jardim da Saude Sao Paulo SP
We have the following result:
{
"results" : [],
"status" : "ZERO_RESULTS"
}
Now, if we simply remove 1 of the 2 L from the name, the result comes in correctly. So my question is: How do you make this LAT / LNG search work the same as Google Maps? For in Google Maps he finds either 1L or 2L.