function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 5846], ['Andorra, Greece', 36], ['Angola', 6], ['Argentina', 6461], ['Armenia', 116], ['Australia', 11], ['Austria', 28], ['Azerbaijan', 46], ['Bahamas', 4], ['Belarus', 4], ['Belize', 1], ['Benin', 1], ['Bolivia', 74], ['Botswana', 21], ['Brazil', 1492], ['Burkina Faso', 18], ['Burundi', 2], ['Cameroon', 3], ['Canada', 400], ['Cape Verde', 57], ['Chile', 632], ['China', 187], ['Colombia', 62], ['Costa Rica', 41], ['Croatia', 124], ['Cuba', 12], ['Cyprus', 1], ['Czech Republic', 2], ['Democratic Republic of the Congo', 11], ['Denmark', 4], ['Ecuador', 60], ['Egypt', 4], ['El Salvador', 3], ['Equatorial Guinea', 1], ['Eritrea', 2], ['Ethiopia', 22], ['Falkland Islands', 1], ['Finland', 6], ['France', 40], ['Gambia', 2], ['Georgia', 391], ['Germany', 6], ['Ghana', 1], ['Greece', 3], ['Greenland', 5], ['Grenada', 2], ['Guam', 5], ['Guatemala', 15], ['Guinea-Bissau', 23], ['Guyana', 7], ['Haiti', 2], ['Honduras', 3], ['Iceland', 8], ['India', 16], ['Indonesia', 151], ['Iran', 287], ['Israel', 5], ['Italy', 69], ['Jamaica', 6], ['Japan', 138], ['Kazakhstan', 4], ['Kenya', 55], ['Kyrgyzstan', 127], ['Lebanon', 1], ['Lesotho', 8], ['Liberia', 1], ['Madagascar', 41], ['Malawi', 6], ['Malaysia', 22], ['Malta', 1], ['Martinique', 6], ['Mauritius', 4], ['Mexico', 247], ['Moldova', 13], ['Mongolia', 13], ['Morocco', 7], ['Mozambique', 18], ['Myanmar', 1], ['Namibia', 164], ['Nepal', 15], ['New Caledonia', 2038], ['Nicaragua', 15], ['Nigeria', 13], ['Norway', 5], ['Pakistan', 1], ['Panama', 65], ['Paraguay', 19], ['Peru', 336], ['Poland', 6], ['Portugal', 1], ['Puerto Rico', 17], ['Republic of the Congo', 1], ['Romania', 1], ['Russia', 949], ['Réunion', 3], ['Saint Helena, Ascension and Tristan da Cunha', 500], ['Saint Kitts and Nevis', 4], ['Saint Pierre and Miquelon', 11], ['Saint Vincent and the Grenadines', 79], ['Samoa', 1], ['Saudi Arabia', 10], ['Senegal', 4], ['Serbia', 7], ['Seychelles', 14], ['Sierra Leone', 1], ['Slovenia', 11], ['South Africa', 826], ['Spain', 8], ['Sri Lanka', 5], ['Sudan', 1], ['Suriname', 1], ['Swaziland', 3], ['Sweden', 63], ['Switzerland', 2], ['Taiwan', 2], ['Tajikistan', 13], ['Tanzania', 6], ['Thailand', 14], ['Trinidad and Tobago', 20], ['Turkey', 12], ['Turkmenistan', 15], ['Uganda', 42], ['Ukraine', 21], ['United Arab Emirates', 1], ['United Kingdom', 56], ['United States of America', 550], ['Uruguay', 11], ['Uzbekistan', 6], ['Vanuatu', 1126], ['Venezuela', 28], ['Vietnam', 8], ['Wallis and Futuna', 1], ['Yemen', 66], ['Zimbabwe', 13], ['caicos island', 1], ['galápagos', 2], ['guyane française', 1], ['malta island', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=24779', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 138, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);