Poland - Highmaps
Highmaps demo
by ninachroscicka
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/countries/pl/pl-all.js"></script>
<div id="container"></div>
CSS
@import url(https://fonts.googleapis.com/css?family=Raleway:400);
#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 = [
['pl-ld', 0],
['pl-mz', 1],
['pl-sk', 2],
['pl-pd', 3],
['pl-lu', 4],
['pl-pk', 5],
['pl-op', 6],
['pl-ma', 7],
['pl-wn', 8],
['pl-pm', 9],
['pl-ds', 10],
['pl-zp', 11],
['pl-lb', 12],
['pl-wp', 13],
['pl-kp', 14],
['pl-sl', 15]
];
// Create the chart
Highcharts.mapChart('container', {
chart: {
marginRight: 20,
map: 'countries/pl/pl-all'
},
title: {
text: null
},
subtitle: {
text: 'Source map: <a href="http://code.highcharts.com/mapdata/countries/pl/pl-all.js">Poland</a>'
},
mapNavigation: {
enabled: true,
enableButtons: false
},
plotOptions: {
series: {
dataLabels: {
enabled: true,
format: '{point.name}',
color: '#3e3e3e',
style: {
textOutline: false,
fontSize: "10px",
fontfamily: 'Raleway'
}
}
}
},
colorAxis: {
min: 0,
minColor: '#fff',
maxColor: '#00b159'
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'top',
floating: true,
y: 220
},
credits: {
enabled: false
},
exporting: {
enabled: true,
buttons: {
contextButton: {
y: -10,
x: 5
}
}
},
series: [{
data: data,
name: 'Random data',
states: {
hover: {
color: '#EDE574'
}
},
dataLabels: {
enabled: true,
format: '{point.name}'
}
}]
});