function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 2415], ['Afghanistan', 1], ['Albania', 1], ['Algeria', 3], ['American Samoa', 110], ['Antarctica', 7], ['Argentina', 1], ['Australia', 788], ['Austria', 2], ['Belarus, Denmark, Finland, Germany, United Kingdom, Ireland, Nor', 1], ['Belgium', 3], ['Botswana', 8], ['Brazil', 50571], ['Cambodia', 8], ['Canada', 52], ['Chile', 6], ['China', 618], ['Colombia', 20], ['Costa Rica', 8], ['Croatia', 104], ['Cuba', 1], ['Czech Republic', 2], ['Democratic Republic of the Congo', 2], ['Denmark', 23], ['Ecuador', 2], ['Egypt', 2], ['El Salvador', 1], ['Ethiopia', 1], ['Ethiopia, South Africa, Madagascar', 2], ['Finland', 13], ['France', 103], ['Georgia', 66], ['Germany', 50], ['Greece', 43], ['Greenland', 2], ['Guyana', 11], ['Hungary', 29], ['Iceland', 3], ['India', 61], ['Indonesia', 22], ['Iran', 251], ['Iraq', 1], ['Italy', 42], ['Jamaica', 1], ['Japan', 118], ['Kazakhstan', 5], ['Luxembourg', 1], ['Madagascar', 303], ['Malaysia', 20], ['Mexico', 32], ['Moldova', 6], ['Nepal', 3], ['New Caledonia', 27], ['New Zealand', 4], ['North Korea', 1], ['Norway', 13], ['Panama', 2], ['Papua New Guinea', 3], ['Paraguay', 2], ['Peru', 14], ['Philippines', 15], ['Poland', 616], ['Portugal', 3], ['Puerto Rico', 8], ['Republic of the Congo', 384], ['Romania', 2], ['Russia', 392], ['Saint Helena, Ascension and Tristan da Cunha', 1], ['Singapore', 4], ['Slovakia', 51], ['South Africa', 378], ['South Korea', 97], ['Spain', 207], ['Sri Lanka', 2], ['Sweden', 19], ['Switzerland', 16], ['Taiwan', 2], ['Thailand', 77], ['Tonga', 1], ['Ukraine', 8], ['United Kingdom', 9], ['United States of America', 133], ['Vanuatu', 42], ['Vietnam', 109], ['Yemen', 61] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=58652', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 85, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);