function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 75], ['Angola', 4], ['Australia', 2], ['Barbados', 1], ['Bonaire, Sint Eustatius and Saba', 1], ['Brazil', 27171], ['Cameroon', 113], ['Central African Republic', 22], ['China', 174], ['Colombia', 25], ['Comoros', 2], ['Cuba', 1], ['Democratic Republic of the Congo', 4], ['France', 1], ['French Guiana', 1], ['Gabon', 38], ['Germany', 2], ['Ghana', 1], ['Guinea-Bissau', 1], ['Guyana', 2], ['India', 53], ['Indonesia', 2], ['Ivory Coast', 11], ['Japan', 3], ['Kenya', 75], ['Laos', 16], ['Liberia', 9], ['Madagascar', 300], ['Malaysia', 45], ['Mayotte', 2], ['Mexico', 2], ['Myanmar', 13], ['Myanmar, Laos', 1], ['Namibia', 42], ['Nepal', 4], ['Nepal, Bhutan', 1], ['New Caledonia', 2], ['Nigeria', 2], ['Panama', 5], ['Peru', 20], ['Somalia', 1], ['South Africa', 15], ['Sri Lanka', 6], ['Suriname', 4], ['Thailand', 13], ['United Kingdom', 1], ['United States of America', 13], ['Vanuatu', 1], ['Venezuela', 7], ['Vietnam', 46], ['africa', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=28357', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 51, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);