function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 7563], ['Algeria', 26], ['Angola', 4], ['Antarctica', 5], ['Argentina', 10], ['Australia', 260], ['Bahamas', 2], ['Barbados', 720], ['Belgium', 6], ['Bouvet Island', 1], ['Brazil', 1432], ['British Indian Ocean Territory', 2], ['Canada', 1], ['Cape Verde', 1], ['Chile', 20], ['China', 9], ['Colombia', 4], ['Comoros', 1], ['Costa Rica', 4], ['Democratic Republic of the Congo', 1], ['Djibouti', 1], ['Egypt', 2], ['El Salvador', 7], ['Falkland Islands', 2], ['Fiji', 1], ['France', 2], ['French Guiana', 1], ['Georgia', 1], ['Germany', 4], ['Greece', 1], ['Guadeloupe', 1], ['Guam', 4], ['Heard Island and McDonald Islands', 25], ['Hong Kong', 2], ['Iceland', 8], ['India', 7], ['Indonesia', 44], ['Indonesia, ambon island', 1], ['Ireland', 1], ['Italy', 1], ['Japan', 26], ['Kenya', 9], ['Liberia', 1], ['Macao', 11], ['Madagascar', 55], ['Malaysia', 1], ['Maldives', 1], ['Mauritania', 1], ['Mauritius', 1], ['Mexico', 14], ['Morocco', 12], ['Mozambique', 473], ['Namibia', 3], ['New Caledonia', 1], ['New Zealand', 147], ['Norway', 4], ['Oman', 1], ['Pakistan', 3], ['Panama', 3], ['Papua New Guinea', 2], ['Philippines', 7], ['Russia', 2], ['RĂ©union', 1], ['Saint Vincent and the Grenadines', 21], ['Samoa', 3], ['Senegal', 1], ['Seychelles', 13], ['Singapore', 5], ['Solomon Islands', 3], ['South Africa', 422], ['South Georgia and the South Sandwich Islands', 7], ['Sri Lanka', 5], ['Taiwan', 5], ['Tanzania', 3], ['Thailand', 4], ['Turkey', 1], ['Tuvalu', 1], ['United Kingdom', 21], ['United States of America', 5], ['Venezuela', 3], ['Vietnam', 1], ['Western Sahara', 1], ['south australia', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=11493', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 83, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);