2

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)

Nippysaurus
  • 20,110
  • 21
  • 77
  • 129

2 Answers2

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
  • 1
    While 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
  • well, the URL of the link to the plugin is speaking, but ok best practice – Urs Dec 03 '14 at 06:49