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.dataFields.value = "value";
polygonSeries.data = [{
"id": "RU",
"value": 500.0506350821784,
"name": "Rusia",
"countryImage": "https://idb-trade-online-tool-powerbi-resources.s3.amazonaws.com/rus.png",
"toolTipTextLine1": "TASA DE VARIACIÓN %",
"tooltipValue1": 88.0506350821784,
"toolTipTextLine2": "2018 VALOR EXPORTACIONES",
"tooltipValue2": 754764530,
"toolTipTextLine3": "2017 VALOR EXPORTACIONES",
"tooltipValue3": 519307611
}, {
"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": "ES",
"value": 10.788656110161753,
"name": "España",
"countryImage": "https://idb-trade-online-tool-powerbi-resources.s3.amazonaws.com/esp.png",
"toolTipTextLine1": "TASA DE VARIACIÓN %",
"tooltipValue1": 10.788656110161753,
"toolTipTextLine2": "2018 VALOR EXPORTACIONES",
"tooltipValue2": 1590105031,
"toolTipTextLine3": "2017 VALOR EXPORTACIONES",
"tooltipValue3": 1486544075
}, {
"id": "AM",
"value": 9.040304099963457,
"name": "Armenia",
"countryImage": "https://idb-trade-online-tool-powerbi-resources.s3.amazonaws.com/arm.png",
"toolTipTextLine1": "TASA DE VARIACIÓN %",
"tooltipValue1": 9.040304099963457,
"toolTipTextLine2": "2018 VALOR EXPORTACIONES",
...