Reputation: 11
I am trying to set up a mobile web app that uses the geolocation feature to find local restaurants, bars, stores, etc. based on your current location. I have looked at a lot of tutorials and tried a lot of different things but I am not really seeing anything that explains what I am looking for. Basically, step 1 it will ask to use your location and you confirm, step 2 it shows your location on a map and then step 3 it shows local businesses with markers. Is there a way to add this feature without having to add a table to call to (which was the only way I have seen it somewhat accomplished but not really)?
Upvotes: 1
Views: 1056
Reputation: 9212
Have a look at the Google Places API which will provide you with practically any kind of information about what's nearby.
Parse the data and provide it to your mapview as annotations.
Upvotes: 2