Get Businesses list or store list around given Latitude and longitude?
is there any api or services for it ?
Get Businesses list or store list around given Latitude and longitude?
is there any api or services for it ?
It's very simple using maps.google.com.
Let's see an example here.
https://maps.googleapis.com/maps/api/place/search/json?location=-33.8670522,151.1957362&radius=500&types=food&name=harbour&sensor=false&key=YOUR_GOOGLE_API_KEY
Here after location
, I have provided the lat-long values.
Then, I have supplied radius
of 500 meters.
I am searching for Food
category. ( you might have any other business category.
Name for search is harbour
.
Supply the key YOUR_GOOGLE_API_KEY
.
Look at the URL http://code.google.com/apis/maps/documentation/places/ which gives you more details. You will get JSON or KML format and you can parse from there.