The image map technique now in widespread use was developed in 1993 by Frans van Hoesel of Rijksuniversiteit Groningen for his WWW Expo project. An independent imapping scheme appeared almost simultaneously at a site developed by Kevin Hughes for Honolulu Community College. Modified forms of the initial ISMAP and MAPPER programs quickly found their way into subsequent releases of NCSA's HTTP server support software. Comparable versions appeared as well in the CERN server releases. Image mapping facilities now exist for most WWW servers.
In NCSA's HTTPd 1.5, imagemap functionality was brought into the server itself to enhance efficiency. The external feature, however, continues to be supported.
SYNTAX : METHOD URL coordnate_pair(1) coordinate_pair(2) ... coordinate_pair(n)
<A HREF="/cgi-bin/imagemap/~name/some.map/">
<IMG SRC="'image'.gif" ISMAP> </A>
default http://curry.edschool.virginia.edu/\ ~edsupp/sorry.html rect http://curry.edschool.virginia.edu 26,72 145,146 circ http://www.novell.com/ 263,115 299,90 poly http://www.extron.com/ 389,64 440,64\ 465,105 440,147 389,147 365,105
SYNTAX : USEMAP="[URL]#"map_name"
The argument tells USEMAP which map to use with the image. It must include a "#" and a map_name but may optionally include a fully qualified URL. If the argument begins with a '#', the map is assumed to be in the current document.
The following are legimate USEMAP declarations:
<MAP NAME="name">
<AREA [SHAPE="shape"] COORDS="x,y,..." [HREF="reference"]
[NOHREF] [ALT="alt"]>
</MAP>
<IMG SRC="start2.GIF" USEMAP="#start2">
<MAP NAME="start2">
<AREA SHAPE="RECT" COORDS="26,72,145,146"
href="http://curry.edschool.virginia.edu">
<AREA SHAPE="CIRCLE" COORDS="262,110,42"
href="http://www.novell.com">
<AREA SHAPE="POLYGON"
COORDS="389,64,440,64,465,105,440,147,389,147,365,105"
href="http://www.extron.com">
<AREA SHAPE="RECT" COORDS="0,0,499,212" href="sorry.html">
</MAP>
Notice that ALL coordinate values are comma delimited.
Content last modified Thursday, 29-Aug-1996 11:09:49 EDT. Comments to jbb@virginia.edu