function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1334], ['Antarctica', 12], ['Argentina', 51], ['Australia', 2], ['Belgium', 1], ['Bermuda', 1], ['Brazil', 14], ['Canada', 16], ['Chile', 13], ['China', 23], ['Colombia', 2], ['Ecuador', 3], ['Falkland Islands', 4], ['Greenland', 3], ['Guadeloupe', 1], ['Guernsey', 1], ['Iceland', 9], ['Iceland, Mexico', 1], ['India', 2], ['Indonesia', 7], ['Ireland', 1], ['Italy', 5], ['Japan', 12], ['Jersey', 1], ['Kenya', 1], ['Maldives', 4], ['Mexico', 7], ['New Zealand', 3], ['Norway', 7], ['Norway, jan mayen island', 1], ['Oman', 1], ['Panama', 5], ['Portugal', 1], ['Saint Helena, Ascension and Tristan da Cunha', 1], ['Saudi Arabia', 4], ['Seychelles', 6], ['Singapore', 2], ['South Africa', 1], ['South Georgia and the South Sandwich Islands', 1], ['Svalbard and Jan Mayen', 1], ['Sweden', 2], ['Taiwan', 7], ['United Kingdom', 27], ['United States Pacific Island Wildlife Refuges', 1], ['United States of America', 183] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=1785', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 45, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);