Is it possible to get info on subarea by providing pincode using google APIs? For example when I give pincode as 600020 it gives chennai as result, however this city contains pincodes from 600001 - 600132(approx). What I would like get from google is subarea information, something like a list containing adyar, gandhinagar etc. I am trying to query like:
http://maps.google.com/maps/api/geocode/json?address=india&components=postal_code:600020&sensor=false
Check here for related question.
I was not able to fetch the area names directly from the pincode. Instead I am doing this. I fetch the lat and lng of the pincode using Geocoding API. Using that lat and lng, I am hitting the same geocode but with the latlong this time and getting the list of area names. Here is the implementation.
gave me the response of
I hit the same geocode API now by passing the lat and lng in it.
I got the response of all the area names associated with it from the key "formatted_address".
P.S Kind of works for me but still looking for a single API in google geocoding API's itself to solve the problem