Reputation: 916
Am an amateur web developer and am curious to know how to create SVG maps like the one in this page with the markers in desired location and on hover tool tip showing the country name.
Thanks in advance
Upvotes: 0
Views: 439
Reputation: 6368
The map on the linked page is created using jVectorMap. http://jvectormap.com/
Another approach is to manually mark up an svg. You can add classes, ids, and link tags inline in an svg and target those elements using css and javascript. That's how we did the map on this contact page. http://www.robinsonenclosures.com/contact/
Upvotes: 1