I have an image map for FL County Auctions on my site where the user can click on a county and it directs to a page of relevent info. The map is sectioned into areas, where if clicked within that region it acts as the link itself.
Process: I found a map and saved as jpg. Exported into Picasa 3 so I could add text to the map, easy to do. I then exported to a file on my pc, when exporting you can change the image size.
I uploaded the the graphic to my site, looked at the source code to find the url for the image and size of image. I then entered griphic’s url into draac.com’s image mapper. It recreated my map on the page so I could gather coordinates and it’s free. Just go to the area of the map you would like to create as a link and click, starting in the top left corner and working clockwise aroud the border area which will be linked to your relevant page. I then copy/ pasted those coordinates into this code.
<img src=“URL for map image goes here.jpg” border=5 height=470 width=480 usemap=“#mymap2”>
<map name=“mymap2”>
<area shape=“poly”
coords="309,89 314,85 320,85 327,88 334,90 338,95 338,103 338,111 331,107 318,108 315,109 312,101 309,101 310,90 " href="URL of page that user will be sent to if clicks within coordinates.html" alt=AlachuaCounty>
<area shape=“poly”
coords=“next area coordintes” href=“the tier 3 you want to link to from the map” alt=The mouseover tag that appears>
<area shape=“poly”
coords="115,20 115,23 121,23 125,23 126,23 128,19 129,16 130,19 132,20 132,23 133,31 133,36 130,34 128,36 124,37 120,37 112,36 110,31 110,29 112,26 113,24 113,23 "
href="URL of relevant page when clicked within above coords" alt=WashingtonCounty>
</map>
The image source is the url of your graphic. Make sure the height and width you enter in the above code is the same as appears when looking at the source code when you posted the image to a page. If they are different your links won’t be in the right spots. Each new “<area shape=etc,etc” creates a new area which is linked to a page.
I hope this makes sense and is useful, I don’t know much but it worked for me.
If you don’t want to go the free/tedious route, PaintShopPro can also help with the image mapping and it is easier to use.