Is there any sort of standardized way to format links to addresses? Emails have href='mailto:[email]'
and most phones (and Skype) support the href='tel:[phone#]'
, so I'm wondering if there's some sort of standardized practice for addresses, as opposed to just linking back to a specific provider like Google Maps.
Asked
Active
Viewed 106 times
0

Aeolingamenfel
- 2,399
- 1
- 15
- 22
1 Answers
1
The closest standard is for the geo: scheme which lets you specify latitude and longitude.
<a href="geo:37.786971,-122.399677;u=35">Wikimedia Headquarters</a>

Quentin
- 914,110
- 126
- 1,211
- 1,335
-
Awesome. Not ideal, but good enough for now, thanks for the quick response! – Aeolingamenfel Oct 22 '15 at 17:40