function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 18960], ['Angola', 8], ['Antarctica', 7], ['Argentina', 2], ['Australia', 105], ['Bahamas', 18], ['Brazil', 207], ['Brunei', 1], ['China', 234], ['Democratic Republic of the Congo', 40], ['Denmark', 801], ['Egypt', 1], ['Falkland Islands', 720], ['France', 3], ['Georgia', 178], ['Greenland', 14], ['Heard Island and McDonald Islands', 44], ['Hong Kong', 22], ['Iceland', 128], ['India', 6], ['Indonesia', 8], ['Iran', 1], ['Ireland', 1], ['Isle of Man', 1], ['Israel', 100], ['Japan', 46], ['Kenya', 1], ['Madagascar', 2], ['Malaysia', 36], ['Mauritania', 4], ['Mexico', 9686], ['Netherlands', 32], ['New Caledonia', 21], ['New Zealand', 47], ['Norway', 94], ['Peru', 1], ['Poland', 101], ['Portugal', 17], ['Puerto Rico', 40], ['Russia', 19], ['Senegal', 2], ['Seychelles', 2], ['Singapore', 29], ['South Korea', 2], ['Sri Lanka', 2], ['Svalbard and Jan Mayen', 2], ['Switzerland', 69], ['Taiwan', 22], ['Tanzania', 1], ['Thailand', 28], ['Trinidad and Tobago', 25], ['United Kingdom', 419], ['United States of America', 1], ['Vanuatu', 56], ['Vietnam', 7] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=32424', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 55, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);