function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1079], ['Australia', 2], ['Belize', 2], ['Brazil', 349], ['China', 8], ['Christmas Island', 37], ['Cocos (Keeling) Islands', 23], ['Colombia', 1], ['Cook Islands', 10], ['Curaçao', 32], ['Dominican Republic', 16], ['French Polynesia', 131], ['Georgia', 1], ['Grenada', 6], ['Guadeloupe', 12], ['Guam', 184], ['Haiti', 4], ['Heard Island and McDonald Islands', 2], ['Iceland', 40], ['Indonesia', 12], ['Iran', 1], ['Jamaica', 1], ['Japan', 221], ['Japan, Guam', 1], ['Madagascar', 54], ['Malaysia', 1], ['Maldives', 6], ['Marshall Islands', 20], ['Mauritania', 2], ['Mexico', 86], ['New Caledonia', 169], ['New Zealand', 2], ['Northern Mariana Islands', 1], ['Pakistan', 7], ['Palau', 1], ['Panama', 37], ['Philippines', 149], ['Réunion', 1], ['Saint Pierre and Miquelon', 1], ['Samoa', 5], ['Sao Tome and Principe', 55], ['Sint Martin', 3], ['South Africa', 2], ['Sweden', 6], ['Taiwan', 14], ['Thailand', 4], ['United States Virgin Islands', 1], ['United States of America', 64], ['Venezuela', 3], ['Wallis and Futuna', 1], ['ambon island', 4] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=2874', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 51, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);