Note: You are viewing the development version of Schema.org. See how we work for more details.

geoMidpoint

A Schema.org Property
Indicates the GeoCoordinates at the centre of a GeoShape, e.g. GeoCircle.

Values expected to be one of these types

Used on these types

Examples

Example 1
Copied
Example notes or example HTML without markup.
  1. Car for hire driver #123 is within 50 meters of a given location, but is moving.
Example encoded as Microdata embedded in HTML.
  1. <div itemscope itemtype="https://schema.org/TaxiService">
  2.   <div itemprop="provider" itemscope itemtype="https://schema.org/LocalBusiness">
  3.     <span itemprop="name">driver #123</span>
  4.     <div itemprop="location" itemscope itemtype="https://schema.org/Place">
  5.       <div itemprop="geo" itemscope itemtype="https://schema.org/GeoCircle">
  6.         <div itemprop="geoMidpoint" itemscope itemtype="https://schema.org/GeoCoordinates">
  7.           <meta itemprop="latitude" content="42.362757" />
  8.           <meta itemprop="longitude" content="-71.087109" />
  9.         </div>
  10.         <meta itemprop="geoRadius" content="50" />
  11.       </div>
  12.     </div>
  13.   </div>
  14.   <meta itemprop="providerMobility" content="dynamic" />
  15. </div>
Example encoded as RDFa embedded in HTML.
  1. <div vocab="https://schema.org/" typeof="TaxiService">
  2.   <div property="provider" typeof="LocalBusiness">
  3.     <span property="name">driver #123</span>
  4.     <div property="location" typeof="Place">
  5.       <div property="geo" typeof="GeoCircle">
  6.         <div property="geoMidpoint" typeof="GeoCoordinates">
  7.           <meta property="latitude" content="42.362757" />
  8.           <meta property="longitude" content="-71.087109" />
  9.         </div>
  10.         <meta property="geoRadius" content="50" />
  11.       </div>
  12.     </div>
  13.   </div>
  14.   <meta property="providerMobility" content="dynamic" />
  15. </div>
Example encoded as JSON-LD in a HTML script tag.
  1. <script type="application/ld+json">
  2.   {
  3.     "@context": "https://schema.org/",
  4.     "@type": "TaxiService",
  5.     "provider": {
  6.       "@type": "LocalBusiness",
  7.       "name": "driver #123",
  8.       "location": {
  9.         "@type": "Place",
  10.         "geo": {
  11.           "@type": "GeoCircle",
  12.           "geoMidpoint": {
  13.             "@type": "GeoCoordinates",
  14.             "latitude": "42.362757",
  15.             "longitude": "-71.087109"
  16.           },
  17.           "geoRadius": "50"
  18.         }
  19.       }
  20.     },
  21.     "providerMobility": "dynamic"
  22.   }
  23. </script>
Structured representation of the JSON-LD example.