function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 2663], ['Afghanistan', 2], ['Argentina', 101], ['Australia', 1], ['Belgium', 2], ['Belize', 1], ['Benin', 7], ['Bolivia', 155], ['Brazil', 143], ['Cameroon', 5], ['Chile', 1], ['China', 306], ['Colombia', 353], ['Costa Rica', 166], ['Cuba', 10], ['Czech Republic', 18], ['Democratic Republic of the Congo', 8], ['Ecuador', 1498], ['Equatorial Guinea', 1], ['Eritrea', 2], ['Ethiopia', 2], ['French Guiana', 71], ['Gabon', 7], ['Ghana', 2], ['Guinea-Bissau', 14], ['Guinea-Bissau, Ivory Coast', 1], ['Guyana', 70], ['Hong Kong', 6], ['Hungary', 2], ['India', 12], ['Indonesia', 67], ['Iran', 104], ['Iraq', 2], ['Ivory Coast', 4], ['Japan', 20], ['Kenya', 3], ['Laos', 8], ['Malawi', 3], ['Malaysia', 360], ['Mauritius', 2], ['Mexico', 704], ['Moldova', 3], ['Mozambique', 24], ['Myanmar', 17], ['Nepal', 10], ['Netherlands', 2], ['Nigeria', 1], ['Oman', 217], ['Pakistan', 24], ['Panama', 67], ['Papua New Guinea', 15], ['Paraguay', 7], ['Peru', 151], ['Republic of the Congo', 1], ['Russia', 34], ['Saudi Arabia', 559], ['Senegal', 3], ['Serbia', 32], ['Sierra Leone', 1], ['Singapore', 7], ['South Africa', 2], ['Sri Lanka', 7], ['Suriname', 13], ['Sweden', 1], ['Syria', 1], ['Taiwan', 2], ['Tanzania', 4], ['Thailand', 1], ['Togo', 3], ['Trinidad and Tobago', 5], ['Turkey', 133], ['Turkmenistan', 6], ['Uganda', 2], ['United Arab Emirates', 7], ['United States of America', 21], ['Uruguay', 1], ['Venezuela', 246], ['Vietnam', 43], ['Yemen', 318], ['Zimbabwe', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=8899', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 80, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);