function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 442], ['Belgium', 41], ['Benin', 6], ['Botswana', 7], ['Brazil', 185], ['Burkina Faso', 2], ['Cambodia', 1], ['Cameroon', 8], ['Cape Verde', 5], ['Central African Republic', 1], ['China', 104], ['Colombia', 11], ['Comoros', 1], ['Costa Rica', 78], ['Democratic Republic of the Congo', 15], ['Ecuador', 9], ['Ethiopia', 5], ['France', 4], ['French Guiana', 1], ['Gabon', 8], ['Gambia', 7], ['Germany', 1], ['Ghana', 2], ['India', 31], ['Indonesia', 1], ['Iran', 51], ['Italy', 2], ['Ivory Coast', 1], ['Japan', 5], ['Kenya', 19], ['Lesotho', 2], ['Madagascar', 1474], ['Malaysia', 453], ['Mayotte', 2], ['Mexico', 105], ['Mozambique', 213], ['Myanmar', 15], ['Namibia', 40], ['Nepal', 1], ['Niger', 1], ['Oman', 1], ['Pakistan', 2], ['Panama', 75], ['Paraguay', 6], ['Peru', 4], ['Philippines', 23], ['Republic of the Congo', 1], ['Russia', 30], ['Senegal', 1], ['Sierra Leone', 2], ['South Africa', 1027], ['South Korea', 50], ['Spain', 141], ['Sri Lanka', 31], ['Sudan', 1], ['Sweden', 2], ['Switzerland', 7], ['Tanzania', 4], ['Thailand', 37], ['Uganda', 17], ['United Kingdom', 2], ['United States of America', 33], ['Vietnam', 25], ['Yemen', 8], ['Zambia', 3], ['Zimbabwe', 4], ['p.r. chi-na.', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=4898', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 67, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);