パラメータ設定例
<area shape="rect" coords="0,10,200,230" href="http://yahoo.co.jp">
パラメーター
href …リンク先を指定。
(例) href="/tokyo.html"
alt …説明
(例) alt="大阪のページへジャンプ"
shape="rect/circle/polygon" …領域の形状を指定
rect:四角形 / circle:円形 / polygon:多角形
(例) shape="rect
cords="n" …領域に関する座標を指定。画像の左上を(0,0)としピクセル数で設定。
四角形(shapre="rect")の座標。対角にある2点(x1,y1),(x2,y2)の座標で指定。
(例) cords="x1,y1,x2,y2"
円形(shapre="circle")の座標。中心(x,y)座標と半径(r)で指定。
(例) cords="x,y,r"
多角形(shapre="polygon")の座標。各頂点(x1,y1),(x2,y2),(x3,y3)~の閉じた領域を指定。
(例) cords="x1,y1,x2,y2,x3,y3,…,x,y"
<!-- マップになるイメージ -->
<img src="/html/sample/map.gif" width="450" height="125" usemap="#map1" border="0">
<!-- クリッカブルマップの本体部分 -->
<map name="map1">
<area shape="circle" coords="57,65,45" href="b.html">
<area shape="rect" coords="184,20,275,110" href="c.html">
<area shape="polygon" coords="394,21,437,53,421,104,367,104,350,53" href="d.html">
</map>