For example, I can open this image to Photoshop and select, let's say, Europe, with any selection tool. Then I need to export/save/see that selection as coordinates. As in the, <polygon points="343,754,274,725,314,709,374,702" />
. Please, any tips?
Found a way to do this quite quickly actually.
And that's it. If you want to make it even more flashy you can use something like
`path {
fill: transparent;
transition: all .3s ease-in-out;
box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px;
}
path:hover {
stroke-width: 2;
stroke: black;
box-shadow: rgba(0, 0, 0, 0.22) 0px 20px 65px;
transform: translate3d(0px, -3px, 0px);
}`
to your CSS files.