function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 5917], ['Afghanistan', 1], ['Angola', 1], ['Antarctica', 47], ['Argentina', 5], ['Aruba', 1], ['Australia', 19], ['Bahamas', 16], ['Barbados', 6], ['Belize', 1], ['Bermuda', 17], ['Bonaire, Sint Eustatius and Saba', 1], ['Bouvet Island', 2], ['Brazil', 68], ['Canada', 67], ['Cape Verde', 3], ['Central African Republic', 4], ['Chad', 25], ['Chile', 20], ['China', 9], ['Christmas Island', 1], ['Colombia', 4], ['Cuba', 14], ['Dominica', 3], ['Dominican Republic', 8], ['Ecuador', 12], ['Ecuador, Saint Helena, Ascension and Tristan da Cunha', 1], ['Falkland Islands', 5], ['Fiji', 1], ['France', 95], ['Gabon', 6], ['Georgia', 5991], ['Gibraltar', 3], ['Greenland', 13], ['Greenland, Iceland', 1], ['Guadeloupe', 1], ['Guinea-Bissau', 4], ['Haiti', 5], ['Heard Island and McDonald Islands', 6], ['Iceland', 516], ['India', 2], ['Indonesia', 54], ['Ireland', 3], ['Italy', 5], ['Japan', 138], ['Jordan', 1], ['Madagascar', 1], ['Martinique', 1], ['Mauritania', 4], ['Mauritius', 11], ['Mexico', 7], ['Monaco', 1], ['Morocco', 11], ['Namibia', 1], ['New Caledonia', 682], ['New Zealand', 619], ['Norway', 30], ['Panama', 3], ['Papua New Guinea', 8], ['Philippines', 15], ['Puerto Rico', 26], ['Russia', 1], ['RĂ©union', 1], ['Saint Helena, Ascension and Tristan da Cunha', 17], ['Saint Kitts and Nevis', 11], ['Saint Pierre and Miquelon', 2], ['Saint Vincent and the Grenadines', 1], ['Seychelles', 6], ['Solomon Islands', 1], ['South Africa', 181], ['South Georgia and the South Sandwich Islands', 11], ['Spain', 42], ['Sri Lanka', 1], ['Sweden', 11], ['Tanzania', 166], ['Tonga', 2], ['United Kingdom', 772], ['United States Pacific Island Wildlife Refuges', 22], ['United States Virgin Islands', 1], ['United States of America', 187], ['Uruguay', 1], ['Vanuatu', 1], ['Venezuela', 1], ['Virgin Islands', 4], ['Western Sahara', 9], ['ascension island', 1], ['salvador island', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=15997', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 87, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);