3
Answers

How to Create a several region on a image with clickable ?

Naleen Kumar

Naleen Kumar

9y
571
1
In a web application I am using map op country and I want to display output as per particular state, how it is possible?
Answers (3)
1
Praveen

Praveen

NA 9.9k 1.2m 9y
Hi Naleen, 
If you're developing that application in ASP. NET, you may do it by using "ImageMap" control of ASP.NET.
 
It provides us to create HotSpots (areas) on a single image. ASP.NET supports three hotspots object
1. RectangleHotSpot
2.CircularHotSpot
3.PolygonHotSpot
 
Because you want to perform some action on image like map,  so using PolygonHotSpot will be the best for you.
 
 
 
Accepted
1
Francis

Francis

NA 11.7k 723.7k 9y
As the previous poster told you can go with "Imagemap" server control is an best option you can go with, in case if you develop ASP.Net application.
 
However, you can manually create "image map" on the image, using various options.
1) You can go with Adobe Photoshop, which provides an easy way to create image maps.
 https://www.youtube.com/watch?v=prU2MYPMoiw
 
2) Also you can consider to use the below online website too, create the same.
 
http://imagemap-generator.dariodomi.de/
https://www.image-maps.com/
 
Hope this helps!
 
 
0
Naleen Kumar

Naleen Kumar

NA 149 7k 9y
Thank you P K
 
                   If you have any code snippet for this, please share...