function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 32756], ['American Samoa', 6], ['Antarctica', 926], ['Antigua and Barbuda', 2], ['Argentina', 3], ['Aruba', 0], ['Australia', 3], ['Bahamas', 2], ['Barbados', 4], ['Bonaire, Sint Eustatius and Saba', 3], ['Bouvet Island', 901], ['Brazil', 8], ['Canada', 1203], ['Cape Verde', 6], ['Chile', 3], ['China', 3], ['Christmas Island', 1], ['Comoros', 5], ['Costa Rica', 12], ['Ecuador', 1], ['Egypt', 3], ['Fiji', 6], ['France', 1], ['Grenada', 6], ['Guadeloupe', 2], ['Guyana', 91], ['Haiti', 0], ['Iceland', 31], ['Iceland, Maldives', 1], ['Iceland, Philippines', 3], ['India', 1], ['Indonesia', 8], ['Ireland', 4], ['Japan', 31], ['Kenya', 432], ['Madagascar', 13082], ['Malaysia', 883], ['Maldives', 231], ['Marshall Islands', 3], ['Mauritania', 7], ['Mauritius', 1], ['Mayotte', 2532], ['Mexico', 1899], ['Micronesia', 20], ['Monaco', 2], ['Morocco', 7], ['Mozambique', 768], ['New Caledonia', 1567], ['New Zealand', 1326], ['Northern Mariana Islands', 3], ['Palau', 10], ['Papua New Guinea', 3], ['Peru', 827], ['Philippines', 397], ['Puerto Rico', 1], ['Saint Lucia', 1], ['Saint Pierre and Miquelon', 62], ['Saint Vincent and the Grenadines', 3], ['Seychelles', 13], ['Solomon Islands', 1123], ['Somalia', 236], ['South Africa', 9], ['Taiwan', 301], ['Tanzania', 3], ['Thailand', 1], ['Tonga', 2], ['United Kingdom', 1], ['United States Pacific Island Wildlife Refuges', 10], ['United States of America', 2], ['Vanuatu', 4], ['Vietnam', 3], ['Wake Island', 8], ['comore island, Comoros', 2], ['south georgia island', 6654], ['south orkney islands', 2], ['tortuga island', 112] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=68589', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 76, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);