function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 2545], ['Angola', 1], ['Australia', 119], ['Benin', 210], ['Bermuda', 1], ['Brazil', 136], ['Cape Verde', 12], ['China', 32], ['Costa Rica', 4], ['Croatia', 4], ['Ecuador', 4], ['El Salvador', 8], ['France', 70], ['Gabon', 4], ['Germany', 1], ['Grenada', 25], ['Haiti', 380], ['Iceland', 5], ['India', 6], ['Indonesia', 185], ['Iran', 7], ['Ireland', 2], ['Italy', 20], ['Ivory Coast', 285], ['Japan', 136], ['Kuwait', 2], ['Liberia', 8], ['Madagascar', 1], ['Malaysia', 42], ['Mexico', 460], ['Morocco', 310], ['Mozambique', 2], ['Namibia', 146], ['New Zealand', 4], ['Norway', 1], ['Oman', 1], ['Panama', 948], ['Papua New Guinea', 12], ['Peru', 12], ['Philippines', 9], ['Portugal', 205], ['RĂ©union', 1], ['Saint Pierre and Miquelon', 13], ['Saint Vincent and the Grenadines', 963], ['Samoa', 1], ['South Africa', 3], ['Spain', 62], ['Sri Lanka', 2], ['Sweden', 12], ['Taiwan', 3], ['Tanzania', 2], ['Tonga', 15], ['United Kingdom', 18], ['United States of America', 2030], ['Uruguay', 1], ['Yemen', 2], ['ambon island', 1], ['costa', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=9495', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 58, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);