World

$('#world-map').vectorMap({
    map: 'world_mill_en',
    backgroundColor: '#805dca',
    borderColor: '#818181',
    borderOpacity: 0.25,
    borderWidth: 1,
    color: '#f4f3f0',
    regionStyle: {
        initial: {
            fill: '#fff'
        }
    },
    markerStyle: {
        initial: {
            r: 9,
            'fill': '#fff',
            'fill-opacity': 1,
            'stroke': '#000',
            'stroke-width': 5,
            'stroke-opacity': 0.4
        },
    },
    enableZoom: true,
    hoverColor: '#060818',
    hoverOpacity: null,
    normalizeFunction: 'linear',
    scaleColors: ['#b6d6ff', '#005ace'],
    selectedColor: '#c9dfaf',
    selectedRegions: [],
    showTooltip: true,
});

Continents

$('#continents-map').vectorMap({
    map: 'continents_mill',
    backgroundColor: '#25d5e4',
    regionStyle: {
        initial: {
            fill: '#fff'
        }
    }
});

Africa

$('#africa-map').vectorMap({
    map: 'africa_mill',
    backgroundColor: '#f8538d',
    regionStyle: {
        initial: {
            fill: '#fff'
        }
    }

});

Asia

$('#asia-map').vectorMap({
    map: 'asia_mill',
    backgroundColor: '#2196f3',
    regionStyle: {
        initial: {
            fill: '#fff'
        }
    }
});

North America

$('#north_america-map').vectorMap({
    map: 'north_america_mill',
    backgroundColor: '#ffbb44',
    regionStyle: {
        initial: {
            fill: '#fff'
        }
    }
});

Oceania

$('#oceanina-map').vectorMap({
    map: 'oceania_mill',
    backgroundColor: '#e95f2b',
    regionStyle: {
        initial: {
            fill: '#fff'
        }
    }
});

Europe

$('#europe-map').vectorMap({
    map: 'europe_mill',
    backgroundColor: '#3b3f5c',
    regionStyle: {
        initial: {
            fill: '#fff'
        }
    }
});

South America

$('#south-america-map').vectorMap({
    map: 'south_america_mill',
    backgroundColor: '#25d5e4',
    regionStyle: {
        initial: {
            fill: '#fff'
        }
    }
});