Skip to content

Instantly share code, notes, and snippets.

@rfmeier
Created October 14, 2014 15:08
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rfmeier/f74ea60a520a27abc410 to your computer and use it in GitHub Desktop.
Save rfmeier/f74ea60a520a27abc410 to your computer and use it in GitHub Desktop.
html5 microdata GeoCoordinates markup
<!-- The parent 'SportsActivityLocation' element, however you may structure it -->
<div itemscope itemtype="http://schema.org/SportsActivityLocation">
<!--
Some other possible elements.
-->
<span itemprop="geo" itemscope itemtype="http://schema.org/GeoCoordinates">
<!-- Display coordinate data if you wish... -->
<meta itemprop="latitude" content="-33.0000" />
<meta itemprop="longitude" content="18.0000" />
</span>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment