function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 3662], ['Afghanistan', 1], ['Antigua and Barbuda', 3], ['Argentina', 19], ['Armenia', 1], ['Australia', 285], ['Austria', 2], ['Azerbaijan', 6], ['Belize', 1], ['Bolivia', 68], ['Botswana', 2], ['Brazil', 5455], ['Cambodia', 18], ['Cameroon', 2], ['Central African Republic', 19], ['China', 73], ['Colombia', 11], ['Costa Rica', 79], ['Cuba', 14], ['CuraƧao, Trinidad and Tobago', 1], ['Democratic Republic of the Congo', 11], ['Dominica', 4], ['Dominican Republic', 63], ['Ecuador', 313], ['El Salvador', 19], ['Equatorial Guinea', 1], ['Fiji', 1], ['France', 6], ['French Guiana', 1], ['Gabon', 7], ['Georgia', 1], ['Germany', 15], ['Grenada', 10], ['Guatemala', 4], ['Guinea-Bissau', 103], ['Guyana', 105], ['Haiti', 3], ['Honduras', 7], ['Hungary', 4], ['Iceland', 335], ['India', 146], ['Indonesia', 20], ['Iran', 1], ['Italy', 13], ['Ivory Coast', 1], ['Jamaica', 3], ['Japan', 77], ['Kenya', 15], ['Lebanon', 1], ['Madagascar', 371], ['Malawi', 122], ['Malaysia', 77], ['Mexico', 80], ['Mexico, Costa Rica', 1], ['Moldova', 3], ['Netherlands', 9], ['New Caledonia', 417], ['New Zealand', 87], ['Nicaragua', 30], ['Panama', 2020], ['Papua New Guinea', 67], ['Paraguay', 50], ['Peru', 64], ['Philippines', 2], ['Puerto Rico', 1], ['Romania', 5], ['Russia', 87], ['Saint Helena, Ascension and Tristan da Cunha', 4], ['Saint Lucia', 1735], ['Saint Pierre and Miquelon', 3], ['Saint Vincent and the Grenadines', 6], ['Sao Tome and Principe', 302], ['Serbia', 4], ['South Africa', 2942], ['South Korea', 53], ['Sudan', 1], ['Suriname', 37], ['Switzerland', 1091], ['Taiwan', 878], ['Tanzania', 8], ['Thailand', 1017], ['Trinidad and Tobago', 176], ['Trinidad and Tobago, Venezuela, Ecuador', 1], ['Turkey', 14], ['Uganda', 59], ['Ukraine', 8], ['United Arab Emirates', 7], ['United States of America', 36], ['Uruguay', 1], ['Vanuatu', 1], ['Venezuela', 63], ['Vietnam', 1], ['Yemen', 2], ['africa', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=22957', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 94, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);