Creating Image Maps
Learn how to build an HTML image map. Image maps allow users to click on a number of "hot spot" links within an image on the page.
This article shows how to create image maps using HTML. You'll learn how to create client-side image maps, and we'll touch on server-side image maps too.
Image maps explained
An image map is a way of defining "hot spot" links within an image on a Web page. This means that, rather than having the whole image behave as one link, you can have lots of different links within the one image.
For example, the single image below has an associated image map containing 3 hot spots that, when clicked on, bring up different JavaScript messages:

Try clicking on each of the shapes and you'll see that each shape has its own link, bringing up its own JavaScript message!
Sponsor message
Download CoffeeCup HTML Editor - Click Here
Linking to an image map: The usemap attribute
How do you turn an image into an image map? Well, to associate an image map with an image, simply add the usemap attribute to the img tag for the image. In the above example, the image map is called "shapes", so our img tag looks like this:
<img src="images/shapes.jpg" width="375"
height="102" style="border: none;" alt="Shapes" usemap="#shapes"/>
Note the usemap="#shapes" attribute, that associates the image map with the image.
Creating an image map: The map tag
The other half of the image map is the map definition itself. In this definition, you tell the browser where the hot spots are in the image, and what the hot spots need to link to.
The map is defined using the <map></map> tag. In our example above, the map tag looks like this:
<map name="shapes" id="shapes">
<area shape="circle"
coords="58,50,40"
href="javascript:clicked_on('circle');"
title="Circle" alt="Circle"/>
<area shape="rect"
coords="136,11,227,89"
href="javascript:clicked_on('rectangle');"
title="Rectangle" alt="Rectangle"/>
<area shape="poly"
coords="309,13,358,89,257,89"
href="javascript:clicked_on('triangle');"
title="Triangle" alt="Triangle"/>
<area shape="default"
nohref="nohref" title="Default" alt="Default"/>
</map>
You can see that we've defined 3 "hot spot" areas in the image map — a circle, a rectangle, and a polygon — and that we've linked each of these areas to a JavaScript function to display the appropriate shape name.
The above map element is placed after the image in our HTML file. In fact, it can be placed anywhere within the HTML page body.
The general syntax for the map element is:
<map name="map-name">
<area shape="area shape"
coords="area coordinates"
href="area hyperlink" or nohref="nohref"
target="hyperlink target"
title="area title"
alt="alternate text"/>
<area shape="area shape" ...
</map>
So, each image map is given a name (map-name), and one or more area tags to specify the hot spots in the image.
The area tag has the following attributes:
shape="rect | circle | poly | default"
Specifies the shape of the area. Possible values are:
rect(a rectangular shape),circle(a circular shape),poly(an arbitrary polygon, with 3 or more points), ordefault(which represents the remaining area of the image not defined by anyareatags).
coords="area-coordinates"
Specifies the coordinates that define the corners of the shape. The coordinates depend on the shape specified in the shape attribute:
| Shape | Coordinates |
|---|---|
rect |
coords="x1,y1,x2,y2"(The top left and bottom right corners of the rectangle) |
circle |
coords="x,y,r"(The centre and radius of the circle) |
poly |
coords="x1,y1,x2,y2,x3,y3,..."(The corners of the polygon) |
Note that all coordinate values are relative to the top left corner of the image. In other words, the top left corner always has coordinates (0,0).
Note also that the default shape type does not need any coordinates.
href="area-hyperlink"
This is the URL that you'd like to link the hot spot to. It works just like a standard <a href=...> tag.
You can specify a nohref attribute instead, in which case the hot spot will not link to anything.
target="hyperlink-target"
This is the optional target window or frame to open the linked URL in. Again, it works just like the target attribute in a standard <a href=...> tag.
title="area-title"
This attribute allows you to give the area a title. When the mouse is rolled over this hot spot, the browser will usually pop up a tool tip displaying this title.
Server-side image maps
As an alternative to defining the whole image map in HTML for the browser to read, you can use server-side image maps. With this type of map, the browser simply sends the (x,y) coordinates of the point clicked on to a server-side script (such as a CGI script).
To define a server-side map, you simply include the ismap attribute, and place an <a href> tag around the image, specifying the server-side script to send the (x,y) information to:
<a href="shapemap.cgi">
<img src="images/shapes.jpg" width="375"
height="102" style="border: none;" ismap="ismap"/>
</a>
Then, when you click on the image, the browser sends the (x,y) coordinate of the point that you clicked on to the server-side script, which can then interpret these (x,y) values and take an appropriate action. The coordinates are appended as parameters to the end of the script URL:

For example, if you wanted the user to choose a country from a world map image, you could use the server-side script to calculate which country was clicked on, and then display information about that country.
Another way of creating a server-side image map is with the image input type in web forms:
<form action="shapemap.cgi">
<input type="image" name="shapes_image"
src="images/shapes.jpg" width="375"
height="102" style="border: none;"/>
</form>
In this case, the (x,y) coordinates are sent as form fields named fieldname.x and fieldname.y. So in the above example, the coordinates would be contained in the fields shapes_image.x and shapes_image.y.
It's best to use a server-side map whenever the map has many areas, or where the areas are not easily defined by simple shapes such as circles, rectangles and polygons.
Working out image map coordinates
If you're using a Web page editor such as Macromedia's Dreamweaver you can draw image maps straight onto your images and let the editor work out the coordinates, but what if you're editing your page by hand?
One easy way to work out coordinates is to change your image map from client-side to server-side temporarily, by changing the usemap="mapname" attribute to ismap="ismap", and adding a dummy <a href> tag around the image, e.g.:
<a href="#"><img src="images/shapes.jpg" width="375"
height="102" style="border: none;" alt="Shapes" ismap="ismap"/></a>
Then, as you roll the mouse over the image, you should see the coordinates appear after the "?" in the status bar of your browser! Try moving your mouse over the image below to see if this works:
If you can't get that working, another technique is to open your image in a graphics package such as Adobe Photoshop. You can then move the mouse over the image and see the mouse coordinates in the Info Palette.
You now know how to create image maps in HTML. Happy mapping!
Follow Elated
Related articles
Responses to this article
20 most recent responses (oldest first):
http://dhost.info/eleomap/
http://www.image-maps.com/
Let's say, for example, I've got a map of the USA and California & Hawaii are grouped in the same category. I'd like to hover over California and also make a box around Hawaii show as highlighted, along with California.
It seems like you can only do continuous polygon for one area at a time. Or is there a symbol used to separate noncontiguous (separated) polygons? I know the semicolon is the same as the comma.
i.e. <area shape="poly" coords="[polygon 1 coordinates]....[SPECIAL SYMBOL?????]...[polygon 2 coordinates]........">
I was actually trying to use a custom jquery script ("highlightmap") created by someone, but I didn't know how to apply the onmouseover action to both areas simultaneously. But if someone has a normal javascript example of what you're talking about, I'd greaty appreciate it.
I just haven't found any help out there for this exact scenario.
Thanks!
It has a groupBy() option that you can use to group area elements by a given attribute (e.g. 'rel'). Then when you mouseover 1 area, the other one highlights too: http://davidlynch.org/js/maphilight/docs/
Example: http://davidlynch.org/js/maphilight/docs/demo_features.html
Pertinent code from the demo:
<map name="features">
<area id="star" rel="group" shape="poly" coords="78,83,70,100,52,104,64,115,61,133,78,124,94,133,91,116,104,102,87,101,79,88" href="#" alt="star" class="{strokeColor:'0000ff',strokeWidth:5,fillColor:'ff0000',fillOpacity:0.6}"></area>
<area id="square2" shape="poly" coords="151,249,175,225,182,222,167,193,136,221,153,250" href="#" alt="another square" rel="group" class="{groupBy:'rel'}"></area>
</map>
I guess I assumed the solution had to be more on the "coords=" attribute side, but this will work for sure.
You're awesome. Best regards,
Andy

Matt
Mike
http://plugins.jquery.com/project/maphilight
http://davidlynch.org/js/maphilight/docs/demo_features.html
Cheers,
Matt
Mike R
thanks!
I am trying to use server side image map logic, but it does not work for me. When I click my image, it asks to download my cgi file rather than opening a html link. I am stuck here from last couple of days. Can you urgently help please.
My html page code -
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
</head>
<body>
<a href="txt.cgi" >
<img src="wteeBU.gif" ismap="ismap" />
</a>
</body>
</html>
Code of cgi file -
rect C:\NewFolder\red.html 105,206,170,246
Code of my red.html -
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
</head>
<body bgcolor="red" >
</body>
</html>
script.cgi?x,y
I completely agree that using server side image map is not a good thing to do.
I have built a slide show using fadein-fadeout mechanism (jquery). I want that when my last slide appears it shud have 4 links. Now to build this mechanism I am only left with server side image map. (Please suggest in case I can do it with some other method)
I have created a cgi file which has information of only one link as of now. co-ordinates - 105,206,170,246 ; shape- rectangle.
I want that when user clicks on my page with image
<body>
<a href="txt.cgi" >
<img src="wteeBU.gif" ismap="ismap" />
</a>
</body>
within mentioned co-ordinates it should redirect to red.html page.
Can you please guide me how can I do that.
Thanks in advance!!
Personally I would use JavaScript/jQuery to detect when the last slide is displayed, then reveal a div containing your 4 links that's overlaid on top of the image using position: absolute and z-index: 999. No need to write server-side scripts.
Post a response
Want to add a comment, or ask a question about this article? Post a response.
To post responses you need to be a member. Not a member yet? Signing up is free, easy and only takes a minute. Sign up now.
