diff --git a/indo.html b/indo.html index 10c16af..1237680 100644 --- a/indo.html +++ b/indo.html @@ -7,87 +7,110 @@
+ - - + - + + dataprov.forEach(attrib => { + output[attrib.attributes.FID - 1][1][0] = attrib.attributes.Kasus_Posi + output[attrib.attributes.FID - 1][1][1] = attrib.attributes.Kasus_Semb + output[attrib.attributes.FID - 1][1][2] = attrib.attributes.Kasus_Meni + }); + + getMap(output); + }else{ + const errorMSG = document.createElement('marquee') + errorMSG.textContent = 'Server mungkin bermasalah' + showError.appendChild(errorMSG) + } + } + request.send() + + function getMap(output){ + // Create the chart + Highcharts.mapChart('container', { + chart: { + map: 'countries/id/id-all' + }, + + title: { + text: 'Corona Virus Indonesia' + }, + + subtitle: { + text: 'Source map: Indonesia' + }, + + mapNavigation: { + enabled: true, + buttonOptions: { + verticalAlign: 'bottom' + } + }, + + series: [{ + data: output, + name: 'Positif-Sembuh-Meninggal', + states: { + hover: { + color: '#BADA55' + } + }, + dataLabels: { + enabled: true, + format: '{point.name}' + } + }] + }); + } + +