function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 37], ['Argentina', 10], ['Bolivia', 2], ['Brazil', 2], ['Chile', 2], ['Falkland Islands', 1], ['Germany', 1], ['Iceland', 2], ['India', 1], ['Iraq', 1], ['Israel', 1], ['Italy', 1], ['Russia', 3], ['Senegal', 1], ['South Africa', 1], ['South Georgia and the South Sandwich Islands', 3], ['Tajikistan', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=70', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 17, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);