I'm using the Google Maps API, but I did not find any of the documentation related to anything, I'd like to list all the neighborhoods of a specific city, but the neighborhood items only appear if I type one street (in some cases you have to have the street and a residence number) so that the neighborhoods are available.
For example:
http://maps.googleapis.com/maps/api/geocode/json?address=Rua%20Cascavel,%20Curitiba%20-%20Paraná
My neighborhood returns:
{
"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á
I get only the locality
, administrative_area_level_2
, administrative_area_level_1
and country
Is it possible to return all neighborhoods of a specific city? If not, is there an alternative?