function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 64953], ['American Samoa', 354], ['Anguilla', 1], ['Antarctica', 162], ['Antigua and Barbuda', 4], ['Argentina', 23], ['Aruba', 2], ['Ashmore and Cartier Islands', 1], ['Australia', 1194], ['Austria', 24], ['Bahamas', 74], ['Barbados', 6], ['Belgium', 6], ['Belize', 1], ['Bermuda', 68], ['Bonaire, Sint Eustatius and Saba', 3], ['Bouvet Island', 460], ['Brazil', 3085], ['Brunei', 8], ['Bulgaria', 2], ['Cameroon', 2], ['Canada', 5], ['Cape Verde', 6], ['Chile', 475], ['China', 1503], ['Colombia', 199], ['Costa Rica', 27], ['Cuba', 7], ['CuraƧao', 3], ['Czech Republic', 2], ['Denmark', 7], ['Djibouti', 5], ['Ecuador', 9], ['Egypt', 21], ['El Salvador', 10], ['Falkland Islands', 10], ['Fiji', 20], ['France', 99], ['French Polynesia', 4], ['Germany', 8], ['Gibraltar', 1], ['Greenland', 1], ['Grenada', 1], ['Guadeloupe', 1], ['Guam', 2], ['Guinea-Bissau', 2], ['Haiti', 4], ['Hong Kong', 4], ['Iceland', 66], ['India', 12], ['Indonesia', 1625], ['Indonesia, Palau', 1], ['Iran', 4], ['Ireland', 24], ['Israel', 12], ['Italy', 11], ['Jamaica', 25], ['Japan', 1149], ['Kazakhstan', 2], ['Kenya', 10], ['Kiribati', 8], ['Kuwait', 2], ['Madagascar', 27], ['Madagascar, Seychelles, Maldives', 10], ['Malaysia', 42], ['Maldives', 47], ['Marshall Islands', 6], ['Mauritania', 2], ['Mauritius', 1], ['Mexico', 233], ['Monaco', 2], ['Morocco', 157], ['Netherlands', 13], ['New Caledonia', 42], ['New Zealand', 1428], ['Northern Mariana Islands', 2], ['Norway', 606], ['Oman', 9], ['Pakistan', 3], ['Palau', 198], ['Panama', 39], ['Papua New Guinea', 7], ['Peru', 2], ['Philippines', 2366], ['Poland', 2], ['Portugal', 5], ['Puerto Rico', 2], ['Russia', 6], ['Saint Helena, Ascension and Tristan da Cunha', 15], ['Saint Kitts and Nevis', 1], ['Saint Lucia', 2464], ['Saint Pierre and Miquelon', 6], ['Saint Vincent and the Grenadines', 174], ['Samoa', 1], ['Sao Tome and Principe', 6], ['Saudi Arabia', 12], ['Senegal', 1], ['Serbia', 1], ['Seychelles', 185], ['Singapore', 45], ['Slovenia', 1], ['Somalia', 2], ['South Africa', 45], ['South Georgia and the South Sandwich Islands', 4], ['South Georgia and the South Sandwich Islands, Antarctica', 1], ['South Korea', 3], ['Spain', 44], ['Sri Lanka', 2], ['Sudan', 10], ['Suriname', 137], ['Switzerland', 51], ['Taiwan', 15], ['Tanzania', 5], ['Thailand', 3], ['Tokelau', 1], ['Tonga', 3], ['Trinidad and Tobago', 1], ['Tunisia', 1], ['Turkey', 5], ['Turks and Caicos Islands', 1], ['Ukraine', 1], ['United Arab Emirates', 1], ['United Kingdom', 293], ['United Kingdom, South Georgia and the South Sandwich Islands', 1], ['United States Pacific Island Wildlife Refuges', 84], ['United States Pacific Island Wildlife Refuges, Kiribati', 1], ['United States Virgin Islands', 5], ['United States of America', 94], ['Uruguay', 3], ['Vanuatu', 9], ['Venezuela', 9], ['Vietnam', 7], ['Virgin Islands', 20], ['Wake Island', 10], ['Yemen', 14], ['ascension island', 768], ['south georgia island', 22], ['st. helena island.', 4], ['turks island', 2], ['wales island', 2], ['wallis island', 2], ['zanzibar island', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=85676', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 142, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);