function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 600], ['Argentina', 0], ['Australia', 0], ['Austria', 0], ['Bolivia', 0], ['Bosnia and Herzegovina', 0], ['Brazil', 12], ['Bulgaria', 0], ['Colombia', 0], ['Comoros', 12], ['Croatia', 0], ['Cyprus', 0], ['Czech Republic', 0], ['France', 0], ['French Guiana', 6], ['Georgia', 0], ['Germany', 0], ['Greece', 0], ['Guam', 0], ['Hungary', 0], ['Iceland', 90], ['India', 486], ['Indonesia', 0], ['Iran', 2], ['Iraq', 1], ['Italy', 0], ['Lebanon', 1], ['Macedonia', 0], ['Madagascar', 389], ['Mauritius', 7], ['Mayotte', 1], ['Mexico', 4], ['Micronesia', 19], ['Mozambique', 2], ['Nepal', 8], ['Northern Mariana Islands', 0], ['Oman', 21], ['Palau', 1], ['Papua New Guinea', 0], ['Paraguay', 0], ['Qatar', 32], ['Romania', 0], ['Russia', 0], ['RĂ©union', 14], ['Saint Pierre and Miquelon', 2], ['Saudi Arabia', 2], ['Serbia', 0], ['Seychelles', 4], ['Slovakia', 0], ['Slovenia', 0], ['Spain', 26], ['Syria', 0], ['Turkey', 55], ['Ukraine', 0], ['United States of America', 1], ['Yemen', 47] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=1845', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 56, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);