I’m planning to use an HTML image map as a schema.org SiteNavigationElement
.
The idea is to use the image as a venue map and as a visual aid to find local business in my area.
The code was validated through the Google Structured Data Testing Tool and everything seems to be ok.
<div itemscope itemtype="http://schema.org/SiteNavigationElement" >
<div itemprop="name">the name</div>
<div itemprop="description">the description</div>
<img itemprop="image" src="map.jpg" usemap="#map_tag"/>
<map name="#map_tag">
<area itemprop="url" coords="1, 2, 3, 4" href="link1.php" shape="rect" alt="alt_text1"/>
<area itemprop="url" coords="5, 5, 7, 8" href="link2.php" shape="rect" alt="alt_text2"/>
</map>
</div>
Is this a valid use for SiteNavigationElement
?