function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 10], ['Bangladesh', 2], ['Egypt', 1], ['Equatorial Guinea', 17], ['Ghana', 2], ['Guam', 6], ['Iceland, Papua New Guinea', 1], ['Indonesia', 6], ['Iran', 3], ['Iraq', 3], ['Malaysia', 1], ['Marshall Islands', 1], ['Northern Mariana Islands', 3], ['Palau', 3], ['Papua New Guinea', 6], ['Senegal', 2], ['Singapore', 31], ['Sri Lanka', 2], ['Togo', 35], ['singapore island', 7] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=142', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 20, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);