Antarctica - Highmaps

Highmaps demo

HTML

<script src="http://code.highcharts.com/maps/highmaps.js"></script>
<script src="http://code.highcharts.com/maps/modules/exporting.js"></script>
<script src="http://code.highcharts.com/mapdata/custom/antarctica.js"></script>

<div id="container"></div>

CSS

#container {
    height: 500px; 
    min-width: 310px; 
    max-width: 800px; 
    margin: 0 auto; 
}
.loading {
    margin-top: 10em;
    text-align: center;
    color: gray;
}

JavaScript

$(function () {

    // Prepare demo data
    var data = [
        {
            "hc-key": "aq-3638",
            "value": 0
        },
        {
            "hc-key": "aq-3639",
            "value": 1
        },
        {
        		"region" : 'aq-3637',
            "value": 2
        }
    ];

    // Initiate the chart
    $('#container').highcharts('Map', {

        title : {
            text : 'Highmaps properties demo'
        },

        colorAxis: {
            min: 0 // enable colorAxis
        },
        
        series : [{
            data : data,
            mapData: Highcharts.maps['custom/de'],
            joinBy: 'hc-key',
            name: 'Random data',
            dataLabels: {
                enabled: true,
                formatter: function () { 
                    // Access the hc-key property of this point
                    return this.point.properties['region']; 
                }
            }
        }]
    });
});