function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 4651], ['Algeria', 84], ['American Samoa', 2], ['Antarctica', 1], ['Argentina', 74], ['Australia', 398], ['Austria', 15], ['Azerbaijan', 1], ['Belarus', 17], ['Belgium', 111], ['Belize', 1], ['Bolivia', 7], ['Bosnia and Herzegovina', 4], ['Bosnia and Herzegovina, Serbia', 2], ['Botswana', 34], ['Brazil', 160], ['Cambodia', 60], ['Cameroon', 1], ['Canada', 50], ['Chile', 16], ['China', 86], ['Colombia', 19], ['Cuba', 1], ['Czech Republic', 1], ['Democratic Republic of the Congo', 2], ['Denmark', 11], ['Ecuador', 14], ['El Salvador', 114], ['Ethiopia', 5], ['Falkland Islands', 1], ['Finland', 63], ['France', 24], ['Gabon', 3], ['Georgia', 3], ['Germany', 8], ['Germany, Austria', 1], ['Germany, Czech Republic, Ukraine, Finland', 1], ['Greenland', 3], ['Haiti', 12], ['Hungary', 6], ['Iceland', 34], ['India', 271], ['Indonesia', 82], ['Iraq', 4], ['Ireland', 4], ['Israel', 5], ['Italy', 21], ['Japan', 73], ['Kazakhstan', 4], ['Kenya', 6], ['Lesotho', 3], ['Madagascar', 2], ['Malaysia', 568], ['Mexico', 16], ['Mongolia', 56], ['Morocco', 1], ['Namibia', 2], ['Netherlands', 1], ['New Caledonia', 2], ['New Zealand', 2], ['Nigeria', 1], ['Norway', 62], ['Pakistan', 2], ['Paraguay', 1], ['Peru', 2], ['Philippines', 1], ['Puerto Rico', 7], ['Republic of the Congo', 3], ['Russia', 1282], ['Saint Helena, Ascension and Tristan da Cunha', 6], ['Saint Lucia', 1], ['Saint Vincent and the Grenadines', 2], ['Senegal', 3], ['Serbia', 5], ['Seychelles', 2], ['Slovakia', 1], ['Slovenia', 8], ['South Africa', 24], ['South Georgia and the South Sandwich Islands', 3], ['South Korea', 7], ['Spain', 9], ['Sudan', 8], ['Sweden', 20], ['Taiwan', 10], ['Tajikistan', 1], ['Tanzania', 1], ['Thailand', 328], ['Tunisia', 3], ['Ukraine', 1], ['United Arab Emirates', 20], ['United Kingdom', 38], ['United States of America', 149], ['Uruguay', 1], ['Venezuela', 14], ['Vietnam', 5], ['socotra island', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=9256', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 96, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);