function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 2991], ['Afghanistan', 0], ['Albania', 53], ['Armenia', 1], ['Austria', 181], ['Bosnia and Herzegovina', 4], ['Canada', 33], ['China', 608], ['Croatia', 19], ['France', 13], ['Georgia', 39], ['Germany', 31], ['Germany, Switzerland', 17], ['Greece', 124], ['Heard Island and McDonald Islands', 149], ['Hungary', 28], ['Iceland', 62], ['Iran', 3], ['Isle of Man', 0], ['Italy', 153], ['Kosovo', 2], ['Kyrgyzstan', 25], ['Lebanon', 3], ['Macedonia', 40], ['Mongolia', 319], ['Nepal', 2], ['Netherlands', 244], ['New Zealand', 2], ['Norway', 4], ['Pakistan', 1], ['Romania', 6], ['Russia', 11], ['Saint Kitts and Nevis', 2], ['Serbia', 26], ['Slovenia', 31], ['South Korea', 52], ['Spain', 1], ['Sweden', 22], ['Switzerland', 133], ['Thailand', 1], ['Turkey', 26], ['Ukraine', 18], ['United Kingdom', 293], ['United States of America', 1699], ['Uzbekistan', 40] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=7512', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 45, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);