function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 57053], ['Afghanistan', 2], ['Algeria', 1], ['American Samoa', 12], ['Angola', 1], ['Antarctica', 4758], ['Antigua and Barbuda', 2], ['Argentina', 122], ['Aruba', 0], ['Australia', 2436], ['Bahamas', 3128], ['Barbados', 38], ['Belgium', 7], ['Bermuda', 2], ['Bonaire, Sint Eustatius and Saba', 3], ['Bouvet Island', 1102], ['Brazil', 201], ['Canada', 1225], ['Cape Verde', 12], ['Chile', 4698], ['China', 7], ['Christmas Island', 1], ['Colombia', 7], ['Comoros', 6], ['Costa Rica', 13], ['Cuba', 1], ['Denmark', 1], ['Dominica', 2], ['Ecuador', 1], ['Egypt', 3], ['Falkland Islands', 6], ['Fiji', 8], ['France', 12], ['French Guiana', 3], ['Germany', 8], ['Greenland', 1], ['Grenada', 7], ['Guadeloupe', 3], ['Guam', 1], ['Guinea-Bissau', 5], ['Guyana', 91], ['Haiti', 0], ['Heard Island and McDonald Islands', 1], ['Honduras, Jamaica', 4], ['Hong Kong', 1], ['Iceland', 531], ['Iceland, Maldives', 1], ['Iceland, Philippines', 3], ['India', 5], ['Indonesia', 14], ['Ireland', 7], ['Japan', 298], ['Kenya', 433], ['Madagascar', 13120], ['Malaysia', 885], ['Maldives', 232], ['Marshall Islands', 3], ['Mauritania', 17], ['Mauritius', 21], ['Mayotte', 2532], ['Mexico', 2909], ['Micronesia', 21], ['Monaco', 4], ['Morocco', 16], ['Mozambique', 770], ['New Caledonia', 8974], ['New Zealand', 4630], ['Nicaragua', 1], ['Northern Mariana Islands', 3], ['Norway', 8], ['Oman', 10], ['Palau', 12], ['Panama', 11], ['Papua New Guinea', 3], ['Peru', 1286], ['Philippines', 964], ['Philippines, Vanuatu, Solomon Islands', 1], ['Portugal', 2], ['Puerto Rico', 1], ['Réunion', 3], ['Saint Helena, Ascension and Tristan da Cunha', 1], ['Saint Lucia', 1], ['Saint Pierre and Miquelon', 63], ['Saint Vincent and the Grenadines', 25], ['Samoa', 2], ['Sao Tome and Principe', 2], ['Saudi Arabia', 13], ['Senegal', 7], ['Seychelles', 46], ['Singapore', 2], ['Solomon Islands', 1124], ['Somalia', 236], ['South Africa', 34], ['South Africa, Madagascar, Mayotte', 1], ['South Georgia and the South Sandwich Islands', 4], ['Spain', 6], ['Sri Lanka', 6], ['Sweden', 1], ['Switzerland', 6], ['Taiwan', 302], ['Tanzania', 10], ['Thailand', 3], ['Tonga', 337], ['Trinidad and Tobago', 4], ['United Kingdom', 1245], ['United States Pacific Island Wildlife Refuges', 13], ['United States of America', 15], ['Vanuatu', 15], ['Vanuatu, Philippines', 1], ['Venezuela', 8], ['Vietnam', 7], ['Virgin Islands', 1], ['Wake Island', 8], ['Wallis and Futuna', 1], ['cape verde island', 1], ['comore island, Comoros', 2], ['georgia island', 0], ['guadeloupe island', 1], ['isla san pedro', 1], ['patagonia', 1], ['reunion island', 5], ['réunion island', 1], ['shetland island', 1], ['south georgia island', 6678], ['south orkney islands', 2], ['st. vincent island.', 553], ['timor', 2], ['tortuga island', 112] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=123637', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 128, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);