function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 21099], ['Afghanistan', 4], ['Angola', 1], ['Antarctica', 97], ['Argentina', 56], ['Aruba', 1], ['Australia', 41], ['Bahamas', 22], ['Barbados', 6], ['Belgium', 1], ['Belize', 1], ['Bermuda', 20], ['Bonaire, Sint Eustatius and Saba', 1], ['Bouvet Island', 2], ['Brazil', 84], ['Canada', 83], ['Cape Verde', 3], ['Central African Republic', 4], ['Chad', 25], ['Chile', 36], ['China', 32], ['Christmas Island', 1], ['Colombia', 6], ['Cuba', 14], ['Dominica', 3], ['Dominican Republic', 8], ['Ecuador', 15], ['Ecuador, Saint Helena, Ascension and Tristan da Cunha', 1], ['Egypt', 2], ['Falkland Islands', 9], ['Fiji', 1], ['France', 516], ['Gabon', 6], ['Georgia', 5991], ['Gibraltar', 4], ['Greenland', 16], ['Greenland, Iceland', 1], ['Guadeloupe', 2], ['Guernsey', 1], ['Guinea-Bissau', 4], ['Haiti', 5], ['Heard Island and McDonald Islands', 6], ['Iceland', 525], ['Iceland, Mexico', 1], ['India', 4], ['Indonesia', 62], ['Iran', 47], ['Ireland', 5], ['Italy', 10], ['Japan', 1126], ['Jersey', 1], ['Jordan', 2], ['Kazakhstan', 2], ['Kenya', 1], ['Madagascar', 1], ['Maldives', 5], ['Martinique', 1], ['Mauritania', 4], ['Mauritius', 1], ['Mexico', 16], ['Monaco', 1], ['Morocco', 11], ['Mozambique', 1], ['Namibia', 1], ['New Caledonia', 682], ['New Zealand', 622], ['Norway', 37], ['Norway, jan mayen island', 1], ['Oman', 1], ['Pakistan', 1], ['Panama', 8], ['Papua New Guinea', 8], ['Philippines', 15], ['Portugal', 1], ['Puerto Rico', 27], ['Russia', 1], ['RĂ©union', 1], ['Saint Helena, Ascension and Tristan da Cunha', 18], ['Saint Kitts and Nevis', 11], ['Saint Pierre and Miquelon', 2], ['Saint Vincent and the Grenadines', 1], ['Saudi Arabia', 5], ['Seychelles', 12], ['Singapore', 2], ['Solomon Islands', 1], ['Somalia', 1], ['South Africa', 182], ['South Georgia and the South Sandwich Islands', 12], ['Spain', 42], ['Sri Lanka', 1], ['Svalbard and Jan Mayen', 1], ['Sweden', 13], ['Switzerland', 1], ['Taiwan', 8], ['Tanzania', 166], ['Tonga', 2], ['Turkmenistan', 1], ['United Kingdom', 800], ['United States Pacific Island Wildlife Refuges', 23], ['United States Virgin Islands', 1], ['United States of America', 430], ['Uruguay', 2], ['Vanuatu', 1], ['Venezuela', 1], ['Virgin Islands', 4], ['Western Sahara', 9], ['ambon island', 1], ['ascension island', 1], ['salvador island', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=33220', 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);