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

VenueMap

A Schema.org Enumeration Member
A venue map (e.g. for malls, auditoriums, museums, etc.).

A member value for enumeration type: MapCategoryType

Examples

Example 1
Copied
Example notes or example HTML without markup.
  1. <p>
  2. Welcome to a fictional SF art museum.
  3. Here is our <a href="/map1234/">venue map</a>
  4. </p>
Example encoded as Microdata embedded in HTML.
  1. <p itemscope itemtype="https://schema.org/Museum">
  2. Welcome to a fictional <span itemprop="name">SF art museum.</span>
  3. Here is our
  4. <span itemscope itemprop="hasMap" itemtype="https://schema.org/Map">
  5. <link itemprop="mapType" href="https://schema.org/VenueMap" />
  6. <a itemprop="url" href="/map1234/">venue map</a></span>
  7. </p>
Example encoded as RDFa embedded in HTML.
  1. <p vocab="https://schema.org/" typeof="Museum">
  2. Welcome to a fictional <span property="name">SF art museum.</span>
  3. Here is our
  4. <span property="hasMap" typeof="Map">
  5. <link itemprop="mapType" href="https://schema.org/VenueMap" />
  6. <a property="url" href="/map1234/">venue map</a></span>
  7. </p>
Example encoded as JSON-LD in a HTML script tag.
  1. {
  2.  "@context": "https://schema.org/",
  3.  "@type": "Museum",
  4.  "name": "SF art museum",
  5.  "hasMap": {
  6.  "@type": "Map",
  7.    "mapType": { "@id": "https://schema.org/VenueMap" },
  8.    "url":  "http://art-sf.example.com/map1234/"
  9.    }
  10. }
Structured representation of the JSON-LD example.