From what I understand in your question, you want to display an address from a click on a map or show a building's address from a spinner.
When that particular building is selected I would like to list its address on that screen
If you are using a MapView :
- Use the
onTap() or onTouch() to get a point where it has been tapped. Use this GeoPoint to get an address using Geocoding api.
- Here is an example of the same.
how would I display an address if a building was selected from the spinner
You can use a similar technique, map all the buildings in the campus to lat, lon coordinates. Then use the Geocoding APIs to get an address based on the spinner item selected. Use the animateTo() API to animate the map to a given point