function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 9958], ['Afghanistan', 32], ['Argentina', 50], ['Australia', 90], ['Austria', 1], ['Bahamas', 2], ['Barbados', 1], ['Belgium', 10], ['Belize', 2], ['Bonaire, Sint Eustatius and Saba, Curaçao', 3], ['Botswana', 82], ['Brazil', 115], ['British Virgin Islands', 1], ['China', 27], ['Colombia', 2], ['Cuba', 2], ['Curaçao', 1], ['Democratic Republic of the Congo', 399], ['Denmark', 1], ['Finland', 1], ['France', 2], ['Georgia', 2], ['Germany', 221], ['Greece', 422], ['Guadeloupe', 608], ['Honduras', 1], ['Hungary', 4], ['Iceland', 16], ['India', 7], ['Indonesia', 4], ['Iran', 66], ['Italy', 44], ['Jamaica', 4], ['Japan', 333], ['Kazakhstan', 14], ['Kenya', 15], ['Madagascar', 2], ['Malawi', 14], ['Mexico', 18], ['Mozambique', 7], ['New Caledonia', 52], ['Norway', 2], ['Oman', 1], ['Paraguay', 3], ['Philippines', 1], ['Romania', 160], ['Russia', 14], ['Senegal', 1], ['Serbia', 1], ['Slovenia', 0], ['Solomon Islands', 1], ['South Africa', 185], ['South Korea', 37], ['Spain', 3], ['Thailand', 421], ['Trinidad and Tobago', 1], ['Tunisia', 10], ['Turkey', 77], ['United States of America', 222], ['Venezuela', 60], ['Vietnam', 13] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=13849', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 61, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);