function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 223], ['Algeria', 137], ['American Samoa', 33], ['Angola', 10], ['Armenia', 2], ['Australia', 4], ['Barbados', 1], ['Benin', 2], ['Brazil', 389], ['Burundi', 3], ['Cameroon', 4], ['Canada', 4], ['Chile', 11], ['China', 659], ['Costa Rica', 26], ['Cuba', 1], ['Czech Republic', 11], ['Democratic Republic of the Congo', 8], ['Ecuador', 2140], ['El Salvador', 6], ['Ethiopia', 1], ['France', 8], ['French Polynesia', 0], ['Gabon', 2], ['Germany', 9], ['Ghana', 1], ['Greece', 13], ['Guam', 0], ['Guinea-Bissau', 0], ['Guyana', 8], ['Heard Island and McDonald Islands', 48], ['Honduras', 2], ['Hungary', 18], ['India', 12], ['Indonesia', 5], ['Ivory Coast', 2], ['Jamaica', 2], ['Japan', 1], ['Kenya', 55], ['Lebanon', 73], ['Lesotho', 1], ['Madagascar', 10], ['Malawi', 1], ['Malaysia', 2], ['Mayotte', 0], ['Mexico', 1], ['Micronesia', 1], ['Montserrat', 4], ['Morocco', 5], ['Mozambique', 1], ['Namibia', 4], ['Nepal', 9], ['Netherlands', 59], ['Northern Mariana Islands', 0], ['Panama', 11], ['Papua New Guinea', 2], ['Paraguay', 14], ['Peru', 1], ['Philippines', 4], ['Poland', 1], ['Russia', 3], ['Saint Lucia', 34], ['Senegal', 2], ['Somalia', 9], ['South Africa', 707], ['South Korea', 35], ['Spain', 2], ['Sudan', 1], ['Suriname', 2], ['Taiwan', 5], ['Tanzania', 6], ['Thailand', 0], ['Uganda', 2], ['United Kingdom', 1], ['United States of America', 18], ['Uruguay', 5], ['Venezuela', 3], ['Vietnam', 0], ['Zambia', 5], ['Zimbabwe', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=4906', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 80, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);