I need to create some relatively complex image maps (like this) but fear doing them by hand. Is there a tool I can use to create complex maps easily? (Idealy a Windows or Mac app, but web apps also welcome)
Asked
Active
Viewed 4,328 times
2
-
i don't suppose you found something for this, did you? – bharal Mar 07 '12 at 21:32
-
I actually ended up doing it by hand ... there don't seem to be any decent tools to help. – Nippysaurus Mar 11 '12 at 10:03
2 Answers
2
You can use CSS.
Just make a <div>
relatively positioned and have a background image.
Then, place a bunch of absolutely positioned, block-level <a>
tags with certain widths and heights within the div. You can use Firebug to alter the anchor tags' left and right properties until the anchor tags cover their appropriate positions.

dangerChihuahua007
- 20,299
- 35
- 117
- 206
1
Fireworks can create and export image maps very well. Don't forget to add Matt Stow's Responsive Imagemaps Plugin from http://mattstow.com/experiment/responsive-image-maps/rwd-image-maps.html

Urs
- 4,984
- 7
- 54
- 116
-
1While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – Barranka Dec 02 '14 at 17:59
-