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

hasMap

A Schema.org Property
A URL to a map of the place.

Values expected to be one of these types

Used on these types

Supersedes
maps
map

Examples

Example 1
Copied
Example notes or example HTML without markup.
  1. <h1>ACME Hotel Innsbruck</h1>
  2.   <span>A beautifully located business hotel right in the
  3. heart of the alps. Watch the sun rise over the scenic Inn valley while
  4. enjoying your morning coffee.</span>
  5.   <a href="https://www.google.com/maps?ie=UTF8&hq&ll=47.1234,11.1234&z=13">Click here for a map.</a>
  6. </div>
Example encoded as Microdata embedded in HTML.
  1. <div itemscope itemtype="https://schema.org/Hotel">
  2.   <h1><span itemprop="name">ACME Hotel Innsbruck</span></h1>
  3.   <span itemprop="description">A beautifully located business hotel right in the
  4. heart of the alps. Watch the sun rise over the scenic Inn valley while
  5. enjoying your morning coffee.</span>
  6.   <a itemprop="hasMap" href="https://www.google.com/maps?ie=UTF8&hq&ll=47.1234,11.1234&z=13">Click here for a map.</a>
  7. </div>