function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 4555], ['Angola', 368], ['Argentina', 1391], ['Armenia', 43], ['Belize', 540], ['Bolivia', 506], ['Brazil', 1159], ['Canada', 2], ['China', 498], ['Colombia', 306], ['Costa Rica', 528], ['Cuba', 67], ['Democratic Republic of the Congo', 3], ['Dominican Republic', 29], ['Ecuador', 25], ['French Guiana', 3], ['Georgia', 3], ['Germany', 3], ['Greece', 105], ['Grenada', 11], ['Guatemala', 1654], ['Guyana', 2], ['Haiti', 1], ['Honduras', 28], ['India', 73], ['Indonesia', 40], ['Iran', 1], ['Italy', 630], ['Jamaica', 35], ['Japan', 1], ['Laos', 129], ['Macao', 5], ['Madagascar', 1], ['Malaysia', 4], ['Mexico', 421], ['Morocco', 10], ['Myanmar', 37], ['Nepal', 20], ['Nicaragua', 24], ['Panama', 2418], ['Paraguay', 101], ['Peru', 20], ['Puerto Rico', 4], ['Russia', 8], ['Saint Kitts and Nevis', 1], ['Saint Pierre and Miquelon', 1], ['Saint Vincent and the Grenadines', 2], ['Sao Tome and Principe', 3], ['Saudi Arabia', 5], ['Senegal', 28], ['Serbia', 7], ['South Africa', 136], ['South Korea', 6], ['Suriname', 7], ['Switzerland', 3], ['Taiwan', 83], ['Tanzania', 69], ['Thailand', 419], ['Trinidad and Tobago', 20], ['Tunisia', 2], ['Turkey', 43], ['United Kingdom', 1], ['United States of America', 149], ['Uruguay', 15], ['Venezuela', 34], ['Vietnam', 85], ['Yemen', 145], ['columb', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=17077', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 68, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);