Skip to content

Instantly share code, notes, and snippets.

@JavierBmrg
Created March 24, 2018 04:42
Show Gist options
  • Save JavierBmrg/6e4c37ec2f67f5dd6c67238a6d1e245f to your computer and use it in GitHub Desktop.
Save JavierBmrg/6e4c37ec2f67f5dd6c67238a6d1e245f to your computer and use it in GitHub Desktop.
<html>
<script src="https://code.highcharts.com/maps/highmaps.js"></script>
<script src="https://code.highcharts.com/mapdata/custom/europe.js"></script>
<script src="https://code.highcharts.com/mapdata/custom/south-america.js"></script>
<body>
<div id="container" style="height: 500px; min-width: 310px; max-width: 600px; margin: 0 auto"></div>
<script>
// Instantiate the map
Highcharts.mapChart('container', {
chart: {
map: 'custom/south-america',
borderWidth: 0
},
title: {
text: ''
},
subtitle: {
text: ''
},
legend: {
enabled: false
},
series: [{
data: [['uy', 1]]
}]
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment