function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 3107], ['Afghanistan', 1], ['Australia', 29], ['Austria', 5], ['Austria, Belgium, Bulgaria, China, Czech Republic, Denmark, Finl', 1], ['Bangladesh', 5], ['Benin', 2], ['Botswana', 13], ['Brazil', 53], ['Brunei', 31], ['Burkina Faso', 3], ['Burundi', 15], ['Cambodia', 1], ['Cameroon', 31], ['Canada', 1], ['Cape Verde', 10], ['Central African Republic', 103], ['China', 2022], ['Comoros', 2], ['Costa Rica', 1], ['Cyprus', 20], ['Democratic Republic of the Congo', 67], ['Dominican Republic', 2], ['Ecuador', 2], ['Egypt', 5], ['Eritrea', 1], ['Ethiopia', 2], ['Fiji', 7], ['France', 13], ['Gabon', 9], ['Gambia', 1], ['Germany', 2], ['Guam', 3], ['Guinea-Bissau', 5], ['Hong Kong', 2], ['Iceland', 26], ['India', 158], ['Indonesia', 224], ['Iran', 61], ['Ireland', 1], ['Italy', 2], ['Ivory Coast', 31], ['Japan', 77], ['Kenya', 464], ['Laos', 55], ['Lebanon', 1], ['Macao', 5], ['Madagascar', 2947], ['Malaysia', 256], ['Mayotte', 4], ['Micronesia', 2], ['Mozambique', 47], ['Myanmar', 53], ['Namibia', 40], ['Nepal', 46], ['New Caledonia', 1], ['Niger', 7], ['Nigeria', 12], ['North Korea', 7], ['Northern Mariana Islands', 1], ['Norway', 1], ['Oman', 33], ['Pakistan', 11], ['Papua New Guinea', 1], ['Peru', 1], ['Philippines', 91], ['Republic of the Congo', 7], ['Romania', 1], ['Russia', 36], ['Rwanda', 69], ['RĂ©union', 1], ['Senegal', 23], ['Serbia', 2], ['Seychelles', 7], ['Sierra Leone', 3], ['Singapore', 7], ['Somalia', 5], ['South Africa', 1557], ['South Korea', 4], ['Spain', 9], ['Sri Lanka', 50], ['Suriname', 1], ['Sweden', 5], ['Taiwan', 563], ['Tanzania', 11], ['Thailand', 147], ['Trinidad and Tobago', 1], ['Turkey', 0], ['Uganda', 72], ['Ukraine', 3], ['United Arab Emirates', 18], ['United Kingdom', 10], ['United States of America', 4], ['Vanuatu', 1], ['Venezuela', 1], ['Vietnam', 43], ['Yemen', 113], ['Zambia', 9], ['Zimbabwe', 33] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=13059', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 99, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);