function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 9636], ['Afghanistan', 11], ['Algeria', 4], ['Angola', 4], ['Antigua and Barbuda', 1], ['Argentina', 2226], ['Australia', 2820], ['Bahamas', 1], ['Barbados', 6], ['Belize', 872], ['Bermuda', 2], ['Bosnia and Herzegovina', 1], ['Brazil', 140], ['British Virgin Islands', 2], ['Cambodia', 8], ['Canada', 3], ['Chile', 118], ['China', 167], ['Christmas Island', 1], ['Colombia', 8], ['Costa Rica', 26], ['Croatia', 11], ['Cuba', 9], ['Denmark', 41], ['Djibouti', 11], ['Dominican Republic', 4], ['Egypt', 1], ['El Salvador', 1], ['Equatorial Guinea', 1], ['Falkland Islands', 44], ['Fiji', 239], ['France', 12], ['French Polynesia', 2], ['Gabon', 3], ['Germany', 9], ['Gibraltar', 2], ['Greece', 1], ['Greenland', 5], ['Grenada', 1], ['Guadeloupe', 0], ['Guatemala', 1], ['Guinea-Bissau', 13], ['Guyana', 0], ['Haiti', 7], ['Heard Island and McDonald Islands', 1], ['Honduras', 2], ['Hong Kong', 3], ['Hungary', 1], ['Iceland', 2169], ['India', 37], ['Indonesia', 400], ['Indonesia, New Caledonia', 262], ['Ireland', 14], ['Italy', 3730], ['Italy, Greece', 1], ['Ivory Coast', 1], ['Jamaica', 8], ['Japan', 66], ['Japan, Philippines', 2], ['Japan, Philippines, Indonesia', 1], ['Kenya', 1], ['Kiribati', 3], ['Kuwait', 39], ['Laos', 22], ['Liberia', 1], ['Libya', 1], ['Madagascar', 134], ['Malaysia', 12], ['Maldives', 11], ['Malta', 1], ['Marshall Islands', 3], ['Mauritania', 3], ['Mauritius', 11], ['Mayotte', 8], ['Mexico', 55], ['Micronesia', 1], ['Mozambique', 90], ['Myanmar', 8], ['Netherlands', 6], ['New Caledonia', 128], ['New Caledonia, United Kingdom, Wallis and Futuna', 1], ['New Zealand', 975], ['Nicaragua', 1], ['Norfolk Island', 2], ['Northern Mariana Islands', 1], ['Norway', 5], ['Oman', 3], ['Panama', 41], ['Papua New Guinea', 84], ['Peru', 7], ['Philippines', 574], ['Philippines, Indonesia, New Caledonia', 1], ['Pitcairn', 1], ['Poland', 1], ['Portugal', 36], ['Portugal, Italy, Austria', 1], ['Puerto Rico', 4], ['Russia', 495], ['RĂ©union', 13], ['Saint Helena, Ascension and Tristan da Cunha', 1], ['Saint Pierre and Miquelon', 4], ['Saint Vincent and the Grenadines', 35], ['Senegal', 2], ['Serbia', 2], ['Seychelles', 6], ['Singapore', 2], ['Slovenia', 1], ['Solomon Islands', 123], ['Somalia', 1], ['South Africa', 175], ['South Africa, Madagascar, Mauritius, Seychelles, Mozambique', 1], ['South Georgia and the South Sandwich Islands', 11], ['South Korea', 6], ['Spain', 8], ['Sri Lanka', 5], ['Sudan', 1], ['Suriname', 1], ['Svalbard and Jan Mayen', 112], ['Sweden', 11], ['Switzerland', 9], ['Taiwan', 36], ['Tanzania', 2], ['Thailand', 40], ['Tonga', 208], ['Trinidad and Tobago', 2], ['Tunisia', 1], ['Turkey', 6], ['Uganda', 4], ['Ukraine', 3], ['United Kingdom', 234], ['United Kingdom, Belgium', 1], ['United States Virgin Islands', 2], ['United States of America', 727], ['Uruguay', 13], ['Uzbekistan', 2], ['Vanuatu', 97], ['Venezuela', 3], ['Vietnam', 7], ['Virgin Islands', 4], ['Wallis and Futuna', 2], ['america', 0], ['domingo', 0], ['malvinas / falkland islands', 1], ['natal', 0], ['new guinea', 8], ['reunion island', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=27879', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 146, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);