function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 13434], ['Antarctica', 4], ['Antigua and Barbuda', 1], ['Argentina', 326], ['Australia', 303], ['Bahamas', 33], ['Bahamas, Jamaica', 1], ['Bermuda', 4], ['Brazil', 663], ['Brazil, Uruguay', 1], ['Canada', 3], ['Cape Verde', 2], ['Chile', 25], ['China', 11], ['Colombia', 30], ['Cook Islands', 1], ['Costa Rica', 49], ['Costa Rica, Panama', 1], ['Cuba', 2], ['Cyprus', 4], ['Djibouti', 2], ['Ecuador', 7], ['Egypt', 107], ['El Salvador', 2], ['Eritrea', 1], ['Estonia', 2], ['Ethiopia', 1], ['Faroe Islands', 3], ['Fiji', 9], ['France', 7], ['French Polynesia', 1], ['Greenland', 4], ['Grenada', 12], ['Haiti', 38], ['Honduras', 2], ['Hong Kong', 3], ['Iceland', 151], ['India', 4], ['Indonesia', 3], ['Iran', 63], ['Ireland', 2], ['Isle of Man', 1], ['Israel', 14], ['Italy', 212], ['Jamaica', 13], ['Japan', 401], ['Kuwait', 2], ['Lebanon', 3], ['Libya', 1], ['Madagascar', 1], ['Marshall Islands', 1], ['Mauritius', 1], ['Mauritius, Indonesia', 1], ['Mexico', 1398], ['Netherlands', 34], ['New Caledonia', 1], ['New Zealand', 4], ['Nicaragua', 2], ['Northern Cyprus', 3], ['Norway', 2], ['Oman', 1], ['Panama', 126], ['Peru', 6], ['Philippines', 15], ['Portugal', 2], ['Puerto Rico', 2], ['Puerto Rico, Guadeloupe', 1], ['Russia', 5], ['Saint Helena, Ascension and Tristan da Cunha', 2], ['Saint Pierre and Miquelon', 1], ['Samoa', 2], ['Seychelles', 4], ['Solomon Islands', 1], ['Somalia', 1], ['South Africa', 6], ['Spain', 4], ['Sri Lanka', 5], ['Sudan', 4], ['Sweden', 3], ['Taiwan', 2], ['Tanzania', 5], ['Timor-Leste', 1], ['Turkey', 1], ['Turks and Caicos Islands', 2], ['United Kingdom', 60], ['United States of America', 478], ['Uruguay', 37], ['Uruguay, Argentina', 1], ['Venezuela', 8], ['Vietnam', 5], ['Virgin Islands', 3], ['antigua island', 1], ['saint vincent island', 1], ['salvador island', 1], ['wales island', 9] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=18223', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 95, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);