I'm working on an Android application where I'm performing a search on all businesses in a radius around a city, and I'm looking for a way to get the addresses of the businesses at each pin into my application so I can work with them. I can perform the search and display it on a map using MapViews, but I can't figure out a way to get access to the list of results. When I use an HTTP GET approach with a output=csv or xml, it only returns the address / GeoPoint of the city I centered the search around.
Does anyone know of a set of methods or a different approach that I can use to get the addresses of the returned businesses from my query in an Android application? Thanks.