function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 51720], ['Afghanistan', 2], ['American Samoa', 6], ['Antarctica', 4758], ['Antigua and Barbuda', 2], ['Argentina', 122], ['Aruba', 0], ['Australia', 2430], ['Bahamas', 4], ['Barbados', 9], ['Belgium', 2], ['Bermuda', 2], ['Bonaire, Sint Eustatius and Saba', 3], ['Bouvet Island', 1102], ['Brazil', 138], ['Canada', 1203], ['Cape Verde', 10], ['Chile', 4689], ['China', 6], ['Christmas Island', 1], ['Colombia', 3], ['Comoros', 5], ['Costa Rica', 13], ['Cuba', 1], ['Denmark', 1], ['Ecuador', 1], ['Egypt', 3], ['Falkland Islands', 1], ['Fiji', 8], ['France', 8], ['Germany', 6], ['Grenada', 6], ['Guadeloupe', 3], ['Guam', 1], ['Guinea-Bissau', 1], ['Guyana', 91], ['Haiti', 0], ['Heard Island and McDonald Islands', 1], ['Hong Kong', 1], ['Iceland', 524], ['Iceland, Maldives', 1], ['Iceland, Philippines', 3], ['India', 3], ['Indonesia', 11], ['Ireland', 5], ['Japan', 189], ['Kenya', 433], ['Madagascar', 13115], ['Malaysia', 883], ['Maldives', 232], ['Marshall Islands', 3], ['Mauritania', 9], ['Mauritius', 21], ['Mayotte', 2532], ['Mexico', 1908], ['Micronesia', 20], ['Monaco', 2], ['Morocco', 8], ['Mozambique', 770], ['New Caledonia', 8971], ['New Zealand', 3712], ['Northern Mariana Islands', 3], ['Oman', 9], ['Palau', 12], ['Panama', 3], ['Papua New Guinea', 3], ['Peru', 827], ['Philippines', 620], ['Philippines, Vanuatu, Solomon Islands', 1], ['Puerto Rico', 1], ['Réunion', 3], ['Saint Lucia', 1], ['Saint Pierre and Miquelon', 62], ['Saint Vincent and the Grenadines', 25], ['Samoa', 1], ['Sao Tome and Principe', 2], ['Saudi Arabia', 13], ['Seychelles', 35], ['Singapore', 2], ['Solomon Islands', 1124], ['Somalia', 236], ['South Africa', 32], ['South Africa, Madagascar, Mayotte', 1], ['South Georgia and the South Sandwich Islands', 4], ['Spain', 4], ['Sri Lanka', 4], ['Switzerland', 6], ['Taiwan', 302], ['Tanzania', 10], ['Thailand', 3], ['Tonga', 337], ['United Kingdom', 1235], ['United States Pacific Island Wildlife Refuges', 10], ['United States of America', 5], ['Vanuatu', 14], ['Vanuatu, Philippines', 1], ['Vietnam', 7], ['Wake Island', 8], ['Wallis and Futuna', 1], ['comore island, Comoros', 2], ['georgia island', 0], ['guadeloupe island', 1], ['patagonia', 1], ['reunion island', 1], ['réunion island', 1], ['shetland island', 1], ['south georgia island', 6675], ['south orkney islands', 2], ['tortuga island', 112] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=111481', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 109, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);