Getting street address from GEO location system variable Added_Location
Currently, the only data you can get from the GEOCODE system variable Added_Location, is longitude & latitude, or district_city & state_province & County & postal_Code. However, what I really need is the street address. I can get this if I map the longitude & latitude points to google maps, using a URL link, and the user has to click that to pop up the google map, and then google map tells the user the street address. That is done in this code:
input.MapUrlAdd = "<a href='http://maps.google.com/maps?q=" + input.Added_Location.latitude + "," + input.Added_Location.longitude + " target='_blank'>Click Here to see the map of this location</a>";
I would rather simply have a URL lookup or API call or something, that returns the street address, so I can report the street address, rather than reporting a link the user has to click to get the street address.
Any help, and code example would be greatly appreciated.
Thanks