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