Try adding a formula field like
"www.google.com/maps/place/" & YourAddressField & " " & AnotherFieldIfNeeded
When you cick on that url it will open google maps and search for that address. It might not work for all but if there is enough address inf...
Agree a map of all records would be great. A workaround for a single record for now is to use a formula field like
(((“www.google.com/maps/place/” & Lat) & “,”) & Long) & "/7z"
this takes Lat and Long from two columns and turns it into an url which ...