World, Miller projection, high resolution - Highmaps
Highmaps demo
by Umair Rafiq
HTML
<script src="https://code.highcharts.com/maps/highmaps.js"></script>
<script src="https://code.highcharts.com/maps/modules/exporting.js"></script>
<script src="https://code.highcharts.com/mapdata/custom/world-highres.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
// Prepare demo data
// Data is joined to map using value of 'hc-key' property by default.
// See API docs for 'joinBy' for more info on linking data and map.
var data = [
['au',5],
['bd',1],
['br',2],
['ca',7],
['co',1],
['cy',1],
['de',2],
['es',1],
['fr',6],
['gb',23],
['ge',1],
['gh',1],
['hk',1],
['id',3],
['in',5],
['it',1],
['jp',1],
['kr',1],
['lb',1],
['my',1],
['ng',1],
['nl',2],
['no',1],
['ph',3],
['sg',1],
['th',1],
['tr',1],
['ua',1],
['us',58],
['za',2],
];
// Create the chart
Highcharts.mapChart('container', {
chart: {
map: 'custom/world-highres'
},
title: {
text: 'Highmaps basic demo'
},
subtitle: {
text: 'Source map: <a href="http://code.highcharts.com/mapdata/custom/world-highres.js">World, Miller projection, high resolution</a>'
},
mapNavigation: {
enabled: true,
buttonOptions: {
verticalAlign: 'bottom'
}
},
colorAxis: {
min: 0
},
series: [{
data: data,
name: 'Random data',
states: {
hover: {
color: '#BADA55'
}
},
dataLabels: {
enabled: true,
format: '{point.name}'
}
}]
});