Tagged Questions

Image Map is a list of coordinates relating to a specific image, created in order to hyperlink areas of the image to various destinations. The intention of an image map is to provide an easy way of linking various parts of an image without dividing the image into separate image files.

learn more… | top users | synonyms (2)

29
votes
6answers
81k views

Using JQuery hover with HTML image map

I have a complicated background image with a lot of small regions that need rollover illustration highlights, along with additional text display and associated links for each one. The final ...
4
votes
1answer
90 views

Suggestion for creating tooltips on an image

Is there an alternative (and more elegant!) method of creating multiple tooltips on top of an image without using image maps? Preferably looking for a solution that makes use of jQuery, but not ...
4
votes
2answers
128 views

What are some reasonable alternatives to an image <area> map?

Is <area> still the best way to handle irregular navigation menus, or is there a better way? My navigation menu looks like this:
4
votes
2answers
739 views

Hover effects on irregular polygons in CSS

I'm wondering how to go about marking up and coding hover effects for a map similar to this image. When each district (or section) is moused over/touched/clicked I need to change the colour of it ...
4
votes
2answers
9k views

iPad Safari's mapping of mouse events to touch events in image-maps

My website makes extensive use of image-maps. The images are of pages from a medieval manuscript. The mouseOver event of the AREA tags has a tooltip attached to it, which displays a modern typographic ...
4
votes
6answers
7k views

Does (HTML5) Canvas have the equivalent of an image map?

Does the Canvas element have the equivalent of img's map, so you can define clickable areas on the canvas element? There is brief mention of a map halfway down the page here: ...
3
votes
1answer
103 views

Creating Dynamic Hotspots in an ASP.net imagemap

I need the ability to create a dynamic number of hotspots in an imagemap the pseudo code for what I want to do is below: Protected Sub AddHotSpot() Dim r1 New RectangleHotSpot For Each Item as ...
3
votes
1answer
46 views

How to put border on area?

Is there a way to put a border around an <area>? I need to do this for testing an imagemap, but this doesn't work: area { outline: 1px solid red; border: 1px solid red; }
3
votes
3answers
151 views

Responsive image map

I have an existing image map in a responsive html layout. Images scale according to browser size, but the image coordinates are obviously fixed pixel sizes. What options do I have to resize the image ...
3
votes
2answers
82 views

1 image 2 links

how do you make an image be clickable in in HTML in different areas of the image and lead to different URL's... for instance I have an image or "button" if you will that is 1 image but I want it to ...
3
votes
2answers
1k views

jQuery lightweight tooltip script recommendation

I am looking for a lightweight jQuery script for tooltips that is lightweight and can be easily used with image maps... Ideally it would automatically take the 'title' of each the area tag to function ...
3
votes
4answers
1k views

Highlight a section of an image in JavaScript

I run a small webpage that allows users to click on various links using image maps. I'd like to highlight the section that a user clicks on to give some feedback to the user (they may be clicking on ...
3
votes
1answer
651 views

jQuery not creating area tags

I'm trying to use jQuery to dynamically create an image map, and I ran into a weird behavior: alert( $('<area />').size() ); // 1 alert( $('<area shape="circle" ...
3
votes
3answers
10k views

How do I highlight parts of an imagemap on mouseover?

I need to display an imagemap with about 70 areas in it. The area of the imagemap the mouse cursor is currently at is supposed to be highlighted in a certain color. Is this possible and if yes, how?
3
votes
2answers
780 views

WinForms control for image map editing

In a WinForms application, I need to be able to interactively edit "hot" areas on top of an image, later to be used as a sort of image map. I tried to rig together an UserControl with some floating ...
3
votes
2answers
4k views

iPhone, Map, Clickable non-rectangular areas

Anyone have any ideas on how I could implement the following on the iPhone? We have a map of the US, and it has different regions (climate regions, I believe) that are different colors. They are not ...
2
votes
1answer
44 views

HTML, jQuery : Show text over area of image-map

I have an image-map like: <img src ="planets.gif" width="145" height="126" alt="Planets" usemap ="#planetmap" /> <map name="planetmap"> <area shape="rect" coords="0,0,82,126" ...
2
votes
3answers
50 views

What is the best tool to create an image map?

I have a large image and I want to make certain sections of the image clickable. I also want to specify the shape of the clickable area (square, circle, custom). Is there some a recommended ...
2
votes
3answers
92 views

Load all my images contained in only one DIV

I want my HTML page to load like normal, but I want one section of the page to only completely load after it has retrieved all images (static and rollovers) of that section. I have this map I created ...
2
votes
2answers
129 views

How to realize with WinForms in C# something like an image with map areas in a homepage (at hoovering cover areas with semi transparent rectangle)?

I have a panel (here called parent), where I draw a calculated picture. Some rectangular areas of this picture shall higlight by hoovering over. It is the same behaviour like on a web page using , ...
2
votes
1answer
170 views

How can I add an image map to dynamically created chart of PHP gd library?

I'm building a chart populated from the database. Now, I wanted to click each point to drill down some information to users. I don't know how to integrate image mapping to each element of the chart ...
2
votes
1answer
373 views

How do you use imagemap control in asp.net with masterpages

I have got a masterpage with a picture on it, I attached the image map control with the picture.. but when i navigate to a child page.. the picture is not triggered. Is there a way to put an image map ...
2
votes
1answer
299 views

Is there a way to use a image map coordinates in jquery?

I want to use the coordinates of an image map but not the map itself. So my question is can I use the coordinates of an image map and detect if a user has scrolled over those coordinates using jquery? ...
2
votes
3answers
354 views

HTML Image Maps

Quick question: Do people still use the old HTML Image Maps? The ones with: <map name="test" id="test"> <area shape="poly" alt="" title="" coords= Or is there a newer, better ...
2
votes
1answer
464 views

Image mapping like feature in Java swing, Points vs GeneralPath

My gaol is to draw several images using 2D graphics in a paintComponent() method. However, I'm not sure how I could add a MouseListener such that each image would know if it was selected. My solution ...
2
votes
2answers
140 views

I need a handy jQuery tool (plugin) to work with the map

I need a handy jQuery tool (plugin) to work with the map. The project has narisovanaya map with cities marked on it, the possible routes. Example I want to: To apply the route (in this example ...
2
votes
1answer
106 views

General Questions About Image Maps

First off, I noticed that you can place the <map> tags anywhere in the document and the image map will work just fine. So, is it common practice for people to put the <map> tags in the ...
2
votes
1answer
118 views

The imagemap today

Remember imagemaps from Web 0.9b? I'm curious about the state of this tag now in 2010. Given some of the surprising and successful resurgences of white elephant technologies (Google Maps' use of ...
2
votes
1answer
2k views

jQuery Tooltip widget well-suited to use with an IMAGE-MAP? suggestions/recommendations please

I would like to display different tooltip content for each of the areas defined in an image-map. Are there any jQuery plug-ins that have an API well-suited to use with image-maps? I would like it also ...
2
votes
6answers
2k views

plot points for image map

I want to add automatic area highlighting to image maps on my webpage. I've found the mapper.js library to be very useful in achieving this, however creating the x,y plots around a regional map is ...
2
votes
1answer
929 views

Adding reverse highlighting to the jQuery image map plugin?

I'm using the jQuery Map Hilighter plugin, but instead of fading a dark patch over each area, I would like to reverse this and instead make the surrounding area dark, keeping the hovered area the same ...
2
votes
3answers
3k views

Div, Background Image, and Image Map

On a web page I'm creating, I have a div with a background image. I overlay some text over the image that I'll be changing frequently, so that's why I'm using a background image and real text instead ...
2
votes
4answers
393 views

What's the definitive on image maps?

I have a fancy, graphically intensive design to convert to HTML. Its navigation has awful (non-standard ofcourse) fonts. I don't like text-replacements techniques that much. So I'm wondering if ...
2
votes
1answer
3k views

Image map in Flex

Anyone have an example of doing something like an image map in Flex? I'm not sure if that is the correct term, since I also want to do things like highlight the selected part of the image or show a ...
1
vote
1answer
37 views

How to Display Uploaded Image from File System

I'm attempting to modify an inherited project that has a convoluted process of displaying uploaded images using an ImageMap control. The current process inserts a new database record with image file ...
1
vote
1answer
50 views

How can I link these two object with javascript?

I have some areas of an imagemap and some checkboxes. Each area has a corresponding checkbox, how can I make it so when an area is clicked the corresponding checkbox gets ticked? Imagemap: <%= ...
1
vote
2answers
188 views

How can I make areas of an imagemap act like checkboxes?

I'm a crappy novice programmer and have been struggling to get this working for months! I have an app which shows different places in a town. The main page displays a map (.png of the town using ...
1
vote
1answer
76 views

Create Image Maps and store them using MVC3?

So, here is the problem, I have a CMS that allows user to upload an image file that is supposed to be a map from a shopping center. In the same system, the user creates and uploads different ...
1
vote
1answer
72 views

Top offset returns incorrectly in Firefox and Opera with image map

The top offset value returned in Firefox and Opera is different from Chrome, Safari and IE. In the jsfiddle example below, Chrome, Safari and IE return 0, while Firefox returns 543 and Opera returns ...
1
vote
3answers
71 views

Alternative to using Image-Maps on complex polygons

I have to create a pretty complex map which is divided in pieces, which themselves are each pretty complex polygonal structures. These are given to me as transparent PNGs. Obviously i can't just use ...
1
vote
0answers
134 views

how to reinstate <img usemap=“#map”> with JQuery

I have this image (and associated image map) <img id="usemap" usemap="ppnavmap" src="images/stories/mapimage2.gif" style="cursor: pointer;"> I then swap it out with with another single image ...
1
vote
0answers
38 views

Is there any opensource javascript plugin for drawing image maps on images?

Found this one, but it doesn't work for me (Firefox 7.01), any recommendations for js library similar to this one? What I want to achieve is: user should be able to draw some elementar shapes ...
1
vote
0answers
78 views

How to generate Image map cords

My current layout uses Image Mapping to do function such as onclick and onrollover. I want to create a backend system that will allow staff to add new areas to the map/image but I would require them ...
1
vote
2answers
72 views

How to prevent Image map area click from propagating to link?

I have an HTML image map which has a few areas with links. I also have some Javascript functionality which, in certain cases, overrides the default functionality of the image map for some specific ...
1
vote
1answer
216 views

Can I put a lightbox or image map within a lightbox?

I've had a look around but haven't managed to find what I'm looking for. Basically, I've got an image on a page that uses a jquery lightbox to make it larger and easier to view. In addition to this, ...
1
vote
0answers
114 views

Javascript Array with Links

I am using an javascript array to swap images and act like a slide show. I am looking to apply an image map to each image and link to a specific page when clicked. I need to code an image map hot ...
1
vote
2answers
76 views

Pausing hover script, when hovering over overlapping, absolutely positioned element

I have a bunch of elements that trigger a tooltip on hover. The problem is that the tooltip overlaps the element, so if I mouse over the tooltip, it will effectively mouse off the element. I then end ...
1
vote
1answer
171 views

Image map with overlay not working in IE

I am trying to create an interactive map with an overlay using html image maps. To see it, please visit: http://www.surge.ca/testing/WFA2100/index.html The explanation: When you hover over an ...
1
vote
0answers
145 views

Zooming into an image map causes hot spots to not line up

I am running into a problem with an image map. I have an image map with hot spots. I'm also using imagepanner.js to perform simple zooming and panning of the image. My issue is that after zooming ...
1
vote
3answers
779 views

Set a background color on the HTML <area> element?

Is there any way to set a background color for the HTML <area> element? I'm creating an image map where certain sections of the map will pop up a tooltip when you mouse over them, and I thought ...

1 2 3 4 5