$(function () { $('#world-map-markers').vectorMap({ map: 'world_mill_en', normalizeFunction: 'polynomial', hoverOpacity: 0.7, hoverColor: false, backgroundColor: 'transparent', regionStyle: { initial: { fill: 'rgba(210, 214, 222, 1)', "fill-opacity": 1, stroke: 'none', "stroke-width": 0, "stroke-opacity": 1 }, hover: { fill: 'rgba(255, 193, 7, 2)', cursor: 'pointer' }, selected: { fill: 'yellow' }, selectedHover: {} }, markerStyle: { initial: { fill: '#fff', stroke: '#FFC107 ' } }, markers: [ { latLng: [37.09,-95.71], name: 'America' }, { latLng: [51.16,10.45], name: 'Germany' }, { latLng: [-25.27, 133.77], name: 'Australia' }, { latLng: [56.13,-106.34], name: 'Canada' }, { latLng: [20.59,78.96], name: 'India' }, { latLng: [55.37,-3.43], name: 'United Kingdom' }, ] }); });