What's new

Welcome to the forum 👋, Visitor

To access the forum content and all our services, you must register or log in to the forum. Becoming a member of the forum is completely free.

Offline image mapping

Drake_Jungblud

New member
Joined
Apr 1, 2023
Messages
3
Reaction score
0
HTML Coins
0
Looking to do offline image mapping where links aren't urls, but open another image and so forth. I know there are bunch of image map generators, but I want the link to point to another image and then within the image creating more links to other images. It's for making offline simple simulator of a software program for offline training. Any suggestions or am I way off base?
 
If I understand your question correctly, you want to create an offline image map where each link points to another image, which then has its own set of links to other images. This is definitely possible and there are a few different ways to approach it.

One option is to use a tool like Adobe Photoshop or GIMP to create your image map, where each clickable area is defined as a separate layer. You can then export the image as an HTML file with image maps, which will create the necessary HTML code to display the image and make the areas clickable. To make the links open other images, you can simply define the URL for each area as the file path to the image you want to open.

Another option is to use an HTML editor like Dreamweaver or Notepad++ to create the image map manually. You can define each clickable area using HTML code, and specify the URL for each link as the file path to the image you want to open.

Once you have your image map set up, you can create additional links within the images themselves by repeating the process above - creating new clickable areas and defining their URLs as the file paths to other images.

Overall, while this approach may require a bit of HTML and image editing know-how, it should be fairly straightforward to create the type of offline simulator you're describing.
 
If I understand your question correctly, you want to create an offline image map where each link points to another image, which then has its own set of links to other images. This is definitely possible and there are a few different ways to approach it.

One option is to use a tool like Adobe Photoshop or GIMP to create your image map, where each clickable area is defined as a separate layer. You can then export the image as an HTML file with image maps, which will create the necessary HTML code to display the image and make the areas clickable. To make the links open other images, you can simply define the URL for each area as the file path to the image you want to open.

Another option is to use an HTML editor like Dreamweaver or Notepad++ to create the image map manually. You can define each clickable area using HTML code, and specify the URL for each link as the file path to the image you want to open.

Once you have your image map set up, you can create additional links within the images themselves by repeating the process above - creating new clickable areas and defining their URLs as the file paths to other images.

Overall, while this approach may require a bit of HTML and image editing know-how, it should be fairly straightforward to create the type of offline simulator you're describing.
Much appreciated for the help and advice! I have been able to map the main image so the areas are defined as clickable, just not sure about the code to use to link those areas to be directed to the next image. I have found plenty of use case examples for hyperlinks to external websites, but it is the specific code for just directing to another image rather than a link to a website. I will look into the Adobe Photoshop or GIMP route, or notepad ++ as it may be more in my league. Most my coding is being done in visual basic studio for Windows 10. I am a major newb. Took a visual basic class in collage years ago and though I don't remember much, it is what I was familar with. I will try the file path rather than the url. Again thank you for the kind help.
 
Last edited:
Hichem, Thank you! Got the main image mapped in visual basic with clickable links to other images, which is fantastic! Simply putting in the img.png instead like you suggested did the trick! My first landing image has about 60 clickable areas directed to other images and it works perfect.

Example of my code for the first image, which works well enough. The links have hover pop ups explaining the function of the feature. When you click on it, it opens to the corresponding image.

I am now trying to figure out the code structure to map those secondary images that are mapped to the first image, so they will have links to another image. I have tried mapping these secondary images, but not sure how it fits within my existing map structure as shown below

<!DOCTYPE html>
<html>
<head>
<title>Image Map</title>
</head>
<body>

<img usemap="#mymap" src="IV 1.10 System Setting Screen.png" width="1920px">

<map name="#mymap">
<area alt="IV 1.10 System Menu" title="System Settings Menu" href="IV 1.10 System Setting Screen Menu Drop Down.png" coords="1520,5,1570,53" shape="rect">
<area alt="Detector Status" title="Detector Status" href="IV 1.10 System Setting Screen with Detector Quicklink.png" coords="1496,2,1407,60" shape="rect">
<area alt="Help Menu" title="Help Menu" href="Record Issue & Help_About_K_Console_InfoMenu.png" coords="1575,-2,1662,74" shape="rect">
<area alt="Worklist" title="Worklist" href="IV 1.10 Worklist screen.png" coords="929,3,1030,53" shape="rect">
<area alt="Views Menu" title="Views Menu" href="" coords="1332,3,1402,50" shape="rect">
<map>

<body>
<html>
 
Last edited:

Theme customization system

You can customize some areas of the forum theme from this menu.

  • Wide/Narrow view

    You can control a structure that you can use to use your theme wide or narrow.

    Grid view forum list

    You can control the layout of the forum list in a grid or ordinary listing style structure.

    Picture grid mode

    You can control the structure where you can open/close images in the grid forum list.

    Close sidebar

    You can get rid of the crowded view in the forum by closing the sidebar.

    Fixed sidebar

    You can make it more useful and easier to access by pinning the sidebar.

    Close radius

    You can use the radius at the corners of the blocks according to your taste by closing/opening it.

  • Choose the color combination that reflects your taste
    Background images
    Color gradient backgrounds
Back