hello I had recently downlaoded the JQVmap from Github and I am making a website kind of like the old Carmen Sandiego game. I have seen on some sites that use this map that they have labels of countries when hovering with your mouse. I read to the best of my knowledge on how to do this on the files I got from the JQVmap github site but with no success.
Thanks... I am not sure if this is the right code to put in but here goes
jQuery(document).ready(function() {
jQuery('#vmap').vectorMap({
map: 'world_en',
backgroundColor: '#333333',
color: '#ffffff',
hoverOpacity: 0.7,
selectedColor: '#666666',
enableZoom: true,
showTooltip: true,
values: sample_data,
scaleColors: ['#a12200', '#343bbb'],
normalizeFunction: 'polynomial',
});
});
thanks