function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1499], ['Afghanistan', 1], ['American Samoa', 104], ['Argentina', 1], ['Australia', 784], ['Austria', 2], ['Belgium', 1], ['Botswana', 8], ['Brazil', 50513], ['Cambodia', 8], ['Canada', 50], ['China', 225], ['Colombia', 20], ['Costa Rica', 5], ['Croatia', 104], ['Czech Republic', 2], ['Democratic Republic of the Congo', 2], ['Denmark', 3], ['Ecuador', 1], ['Egypt', 2], ['Ethiopia', 1], ['Ethiopia, South Africa, Madagascar', 2], ['Finland', 6], ['France', 66], ['Georgia', 1], ['Germany', 13], ['Greece', 21], ['Greenland', 1], ['Hungary', 29], ['Iceland', 3], ['India', 16], ['Indonesia', 12], ['Iran', 183], ['Iraq', 1], ['Italy', 36], ['Japan', 11], ['Kazakhstan', 5], ['Luxembourg', 1], ['Madagascar', 293], ['Malaysia', 17], ['Mexico', 26], ['Nepal', 1], ['New Caledonia', 10], ['New Zealand', 1], ['North Korea', 1], ['Norway', 3], ['Panama', 2], ['Papua New Guinea', 3], ['Peru', 2], ['Philippines', 14], ['Poland', 2], ['Portugal', 2], ['Puerto Rico', 2], ['Republic of the Congo', 384], ['Romania', 5], ['Russia', 169], ['Saint Helena, Ascension and Tristan da Cunha', 1], ['Singapore', 4], ['Slovakia', 2], ['South Africa', 361], ['South Korea', 14], ['Spain', 206], ['Sri Lanka', 2], ['Sweden', 7], ['Switzerland', 12], ['Taiwan', 2], ['Thailand', 71], ['Tonga', 1], ['Ukraine', 5], ['United Kingdom', 7], ['United States of America', 89], ['Vanuatu', 18], ['Vietnam', 54] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=55536', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 73, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);