Search code examples
jquerycssjvectormap

jVectorMap - disable hover over country


I am using jVectorMap library and its working fine. But i don't want to show country name when mouse hover over the map.

// worldMap is the container
  $('#worldMap').vectorMap({
                    map: 'world_mill_en',
                    backgroundColor : 'transparent',
                    zoomOnScroll: false,
                    zoomButtons : false
    });

Currently its showing country name when we hover over the map. I want do disable this functionality.

http://jsfiddle.net/3xZ28/238/

Any help is greatly appreciated.


Solution

  • http://jsfiddle.net/3xZ28/243/

    onRegionLabelShow: function(e, el, code){
        e.preventDefault();
    }