function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 234], ['Afghanistan', 13], ['Australia', 19], ['Botswana', 7], ['Ghana', 2], ['Guinea-Bissau', 43], ['Iceland', 1], ['India', 51], ['Indonesia', 31], ['Ireland, United Kingdom', 42], ['Israel', 25], ['Kenya', 25], ['Kenya, Uganda', 6], ['Kenya, Zimbabwe', 15], ['Laos, Thailand', 44], ['Madagascar', 8], ['Malaysia', 15], ['Nepal', 45], ['New Caledonia', 10], ['Papua New Guinea', 23], ['Philippines', 30], ['South Africa', 2], ['Sri Lanka', 4], ['Taiwan', 2], ['Taiwan, Philippines, Nepal, Malaysia, India', 34], ['Thailand', 167], ['Thailand, South Korea, Japan', 15], ['Uganda', 47], ['United Kingdom, Spain, Egypt', 25], ['United States of America', 1], ['Vanuatu', 3] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=989', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 31, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);