fredericoagent
08-01-2009, 09:57 AM
Hi All,
Requre the help of a HTML coder to help me out.
I have an image and need some help with Imagemap ( so put links on a couple of sections on the image in the html ).
If anyone can spare a couple of minutes please PM me .
Thanks in advance
buyaplaceonearth
08-01-2009, 01:23 PM
You can use Dreamweaver and easily map the image by yourself.
Open the html file where image is located, click the image, and at the bottom, on the proprieties panel there is a mapping option.
buyaplaceonearth
08-01-2009, 01:36 PM
Or...use this html
<img src="yourimage" width="imgwidth" height="imgheight" alt="alt" usemap="#mapping" />
<map name="mapping">
<area shape="rect" coords="x1,y1,x2,y2" href="link.html" />
<area shape="circle" coords="x,y,r" href="link.html" />
</map>
This is a sample where you can use 2 link shapes (rectangle and circle) and each of them has coordinates on that image (x1,y1 are the coordinates of top left corner of the rectangle,x2,y2 are the coordinates of the bottom right corner of the rectangle and x,y are the coordinates of the center of the circle and r is the radius of that circle)
Hope this exemple helps
fredericoagent
08-01-2009, 03:24 PM
is there an easy way to get the coordinates ?
buyaplaceonearth
08-01-2009, 03:40 PM
if you have an image editor with rules yes, if not you just have to aproximate
kieransimkin
08-05-2009, 03:08 PM
Try this:
http://www.kolchose.org/simon/ajaximagemapcreator/