function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1083], ['Afghanistan', 33], ['Algeria', 10], ['Anguilla', 1], ['Antigua and Barbuda', 19], ['Argentina', 379], ['Australia', 10], ['Bahamas', 29], ['Belize', 254], ['Bolivia', 111], ['Bonaire, Sint Eustatius and Saba', 1], ['Brazil', 286], ['Cameroon', 1], ['Cayman Islands', 1], ['Central African Republic', 6], ['China', 18], ['Colombia', 4], ['Costa Rica', 35], ['Cuba', 26], ['Democratic Republic of the Congo', 355], ['Dominican Republic', 104], ['Ecuador', 76], ['Ethiopia', 2], ['French Guiana', 3], ['Gabon', 2], ['Ghana', 6], ['Guam', 23], ['Guatemala', 3], ['Haiti', 6], ['Honduras', 16], ['Iceland', 2], ['India', 15], ['Indonesia', 262], ['Ivory Coast', 1], ['Jamaica', 84], ['Japan', 89], ['Kenya', 6], ['Laos', 5], ['Madagascar', 307], ['Malaysia', 73], ['Mexico', 195], ['Nicaragua', 4], ['Nigeria', 6], ['Panama', 99], ['Papua New Guinea', 13], ['Paraguay', 57], ['Peru', 27], ['Philippines', 24], ['Republic of the Congo', 1], ['Russia', 2], ['Saint Helena, Ascension and Tristan da Cunha', 1], ['Senegal', 3], ['Seychelles', 7], ['Singapore', 13], ['South Africa', 1], ['South Korea', 7], ['Sri Lanka', 3], ['Sudan', 1], ['Suriname', 2], ['Taiwan', 14], ['Tanzania', 19], ['Thailand', 30], ['Togo', 1], ['Trinidad and Tobago', 27], ['Turkey', 8], ['Turks and Caicos Islands', 5], ['Uganda', 1], ['United States of America', 371], ['Uruguay', 1], ['Venezuela', 11], ['Vietnam', 5], ['Zambia', 1], ['iles-sechelles-mahe', 1], ['madagascar-n', 1], ['nevis island', 9], ['saba island', 12] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=4730', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 76, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);