function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 3], ['Afghanistan', 1], ['Armenia', 2], ['Brazil', 5], ['Bulgaria', 0], ['France', 20], ['Germany', 0], ['Greece', 19], ['Iceland', 11], ['Luxembourg', 91], ['Morocco', 35], ['Spain', 23], ['Switzerland', 29], ['Thailand', 16], ['Turkey', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=256', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 15, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);