function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 48348], ['American Samoa', 9], ['Antarctica', 2440], ['Antigua and Barbuda', 2], ['Argentina', 603], ['Ashmore and Cartier Islands', 1], ['Australia', 986], ['Bahamas', 1656], ['Barbados', 533], ['Belgium', 2], ['Belize', 8], ['Bermuda', 10], ['Bonaire, Sint Eustatius and Saba', 26], ['Brazil', 384], ['Canada', 732], ['Cape Verde', 10], ['Chile', 67], ['China', 9], ['Clipperton Island', 2], ['Colombia', 16], ['Costa Rica', 3], ['Cuba', 22], ['Curaçao', 230], ['Dominican Republic', 3], ['Ecuador', 2], ['Egypt', 7], ['El Salvador', 8], ['Eritrea', 1], ['Falkland Islands', 1], ['Fiji', 10], ['France', 38], ['French Polynesia', 33], ['Georgia', 5], ['Germany', 12], ['Greece', 6], ['Greenland', 2638], ['Grenada', 3], ['Guadeloupe', 15], ['Guam', 1], ['Guernsey', 2], ['Guyana', 159], ['Haiti', 4], ['Hong Kong', 3], ['Iceland', 150], ['India', 33], ['Indonesia', 379], ['Ireland', 3], ['Israel', 15], ['Italy', 808], ['Jamaica', 13], ['Japan', 102], ['Jordan', 13], ['Kenya', 8], ['Lebanon', 2], ['Madagascar', 62], ['Maldives', 20], ['Martinique', 113], ['Mauritania', 2], ['Mauritius', 18], ['Mexico', 47], ['Micronesia', 1], ['Monaco', 4], ['Montserrat', 2], ['Myanmar', 1], ['Namibia', 3], ['Netherlands', 36], ['New Caledonia', 675], ['New Zealand', 90], ['Norfolk Island', 1], ['Norway', 547], ['Oman', 12], ['Palau', 46], ['Panama', 19], ['Papua New Guinea', 9], ['Paraguay', 1], ['Peru', 16], ['Philippines', 1983], ['Portugal', 2], ['Puerto Rico', 31], ['Russia', 9], ['Réunion', 27], ['Saint Helena, Ascension and Tristan da Cunha', 2], ['Saint Kitts and Nevis', 18], ['Saint Vincent and the Grenadines', 7], ['Saudi Arabia', 14], ['Seychelles', 134], ['Sierra Leone', 30], ['Singapore', 26], ['Sint Martin', 4], ['South Africa', 925], ['South Georgia and the South Sandwich Islands', 80], ['South Korea', 19], ['Spain', 10], ['Sri Lanka', 5], ['Suriname', 301], ['Svalbard and Jan Mayen', 1], ['Sweden', 80], ['Taiwan', 13], ['Thailand', 46], ['United Kingdom', 61], ['United States Virgin Islands', 5], ['United States of America', 41], ['Venezuela', 6], ['Vietnam', 8], ['Virgin Islands', 5], ['ambon island', 2], ['ascension island', 5], ['isla san pedro', 2], ['isla tortuga', 4], ['marion island', 1], ['san cristobal island', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=66209', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 111, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);