function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1469], ['Afghanistan', 2], ['Andorra', 1], ['Argentina', 1051], ['Australia', 3130], ['Barbados', 4], ['Belize', 997], ['Bolivia', 555], ['Brazil', 351], ['Burkina Faso', 3], ['Burundi', 1], ['Canada', 1224], ['Chile', 3824], ['Colombia', 171], ['Costa Rica', 4318], ['Cuba', 237], ['Czech Republic', 4], ['Democratic Republic of the Congo', 66], ['Dominica', 38], ['Dominican Republic', 492], ['Ecuador', 4151], ['El Salvador', 12], ['Ethiopia', 86], ['Falkland Islands', 13], ['Georgia', 192], ['Germany', 1], ['Ghana', 27], ['Greece', 7], ['Grenada', 81], ['Guadeloupe', 1], ['Guatemala', 799], ['Guyana', 292], ['Honduras', 174], ['Hungary, Germany, Switzerland', 60], ['Italy', 5], ['Jamaica', 15], ['Kenya', 13], ['Malawi', 2], ['Malaysia', 3], ['Mexico', 1982], ['Mongolia', 8], ['Panama', 538], ['Paraguay', 130], ['Peru', 621], ['Puerto Rico', 36], ['Republic of the Congo', 2], ['Russia', 4], ['Rwanda', 14], ['Saint Helena, Ascension and Tristan da Cunha', 638], ['Saint Kitts and Nevis', 366], ['Saint Lucia', 32], ['Saint Vincent and the Grenadines', 20], ['South Africa', 769], ['South Georgia and the South Sandwich Islands', 84], ['Spain', 2], ['Switzerland', 5], ['Tanzania', 11], ['Togo', 10], ['Trinidad and Tobago', 158], ['Uganda', 3], ['United States of America', 450], ['Uruguay', 1], ['Venezuela', 1141], ['Virgin Islands', 16], ['Zimbabwe', 3] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=30916', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 65, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);