I am developing a application that would benefit from identifying items from an image map. You can create image maps easily on a asp.net site using this code.
<asp:imagemap id="ImageMap1" runat="server" imageurl="image.gif">
<asp:circleHotSpot PostbackValue="Area1" radius="10" X="30" Y="30" ALternateText="Area1" HotSpotMode="PostBack">
</asp:imagemap>
You could change the image to show the hot spots location but it would be easier in this case to show the hot spot with a mouse over or border.
If you look at facebook when people are identified in an image this is kind of what I am trying to achieve any ideas?