8
I am using the Google-Maps API, but I did not find anywhere in the documentation something related, I would like to list all the neighborhoods of a specific city, but the items with neighborhood (Neighborhood) only appear if I type a street (in some cases have to have the street and a residential number) so that the neighborhoods are available.
For example:
http://maps.googleapis.com/maps/api/geocode/json?address=Rua%20Cascavel,%20Curitiba%20-%20Paraná
The neighborhood returns to me:
{
"long_name" : "Boqueirão",
"short_name" : "Boqueirão",
"types" : [ "neighborhood", "political" ]
}
But this way:
http://maps.googleapis.com/maps/api/geocode/json?address=Rua%20Cascavel,%20Curitiba%20-%20Paraná
Just give me back the locality
, administrative_area_level_2
, administrative_area_level_1
and country
Is it possible to return all neighborhoods of a specific city? If it is not possible there is some alternative?
Thanks for the tip, unfortunately my problem is that many webservices (partners) that the company uses works with the names as Googlemaps and do not provide this list of neighborhoods/ addresses publicly :(
– Guilherme Nascimento