Multi-series map
by amcharts
HTML
<script src="https://cdn.amcharts.com/lib/4/core.js"></script>
<script src="https://cdn.amcharts.com/lib/4/maps.js"></script>
<script src="https://cdn.amcharts.com/lib/4/geodata/worldLow.js"></script>
<script src="https://cdn.amcharts.com/lib/4/geodata/usaLow.js"></script>
<script src="https://cdn.amcharts.com/lib/4/themes/animated.js"></script>
<div id="chartdiv"></div>
CSS
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
#chartdiv {
width: 100%;
height: 500px;
}
JavaScript
// Theme
am4core.useTheme(am4themes_animated);
// Create map instance
var chart = am4core.create("chartdiv", am4maps.MapChart);
// Set map definition
chart.geodata = am4geodata_worldLow;
// Set projection
chart.projection = new am4maps.projections.Miller();
// Create map polygon series
var polygonSeries = chart.series.push(new am4maps.MapPolygonSeries());
polygonSeries.exclude = ["AQ"];
polygonSeries.data = [{
"id": "AE",
"value": 30.182041691658323,
"name": "Emiratos Árabes Unidos",
"countryImage": "https://idb-trade-online-tool-powerbi-resources.s3.amazonaws.com/are.png",
"toolTipTextLine1": "TASA DE VARIACIÓN %",
"tooltipValue1": 30.182041691658323,
"toolTipTextLine2": "2018 VALOR EXPORTACIONES",
"tooltipValue2": 227448899,
"toolTipTextLine3": "2017 VALOR EXPORTACIONES",
"tooltipValue3": 225952466
}, {
"id": "AO",
"value": 7.041771954623786,
"name": "Angola",
"countryImage": "https://idb-trade-online-tool-powerbi-resources.s3.amazonaws.com/ago.png",
"toolTipTextLine1": "TASA DE VARIACIÓN %",
"tooltipValue1": 7.041771954623786,
"toolTipTextLine2": "2018 VALOR EXPORTACIONES",
"tooltipValue2": 37359336,
"toolTipTextLine3": "2017 VALOR EXPORTACIONES",
"tooltipValue3": 37386409
}, {
"id": "AI",
"value": 0,
"name": null,
"countryImage": null,
"toolTipTextLine1": "TASA DE VARIACIÓN %",
"tooltipValue1": null,
"toolTipTextLine2": " VALOR ",
"tooltipValue2": null,
"toolTipTextLine3": "-1 VALOR ",
"tooltipValue3": null
}, {
"id": "AL",
"value": 33.25724970307478,
"name": "Albania",
"countryImage": "https://idb-trade-online-tool-powerbi-resources.s3.amazonaws.com/alb.png",
"toolTipTextLine1": "TASA DE VARIACIÓN %",
"tooltipValue1": 33.25724970307478,
"toolTipTextLine2": "2018 VALOR EXPORTACIONES",
"tooltipValue2": 4469604,
"toolTipTextLine3": "2017 VALOR EXPORTACIONES",
"tooltipValue3": 4641857
}, {
"id": "AD",
"value": 72.06806115268982,
"name": "Andorra",
"countryImage":...