Chakri P
Hi,
I am doing a web application in Asp.Net, to retrieve Near By Address from Google Maps API.
For getting this, I am using the below Link:
https://maps.googleapis.com/maps/api/place/search/xml?location=17.4348017,78.4480110&radius=5000&types=library&sensor=true&key=AIzaSyD3jfeMZK1SWfRFDgMfxn_zrGRSjE7S8Vg
From this I am getting Places which are surrounded by Radius of 5 kms.
My Problem is that,
I am passing "types" parameter here. This parameter is supporting the keywords from below link only:
https://developers.google.com/places/documentation/supported_types
But I want to send "types" parameter as of my wish, like either as street/area from Street Column in my Database.
Ex:
types=area or street or place
I was struck at this point.
Can any one Please help me in solving this problem.