function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 250], ['Afghanistan', 1], ['Argentina', 91], ['Armenia', 1], ['Australia', 85], ['Austria', 5], ['Belarus, Bulgaria, United Kingdom, Germany', 1], ['Belgium', 54], ['Bolivia', 72], ['Brazil', 10], ['Bulgaria', 1], ['Canada', 5], ['Chad', 4], ['Chile', 591], ['China', 6], ['Colombia', 261], ['Costa Rica', 33], ['Croatia', 1], ['Cyprus', 2], ['Czech Republic', 30], ['Ecuador', 250], ['Estonia', 19], ['Finland', 13], ['France', 20], ['Georgia', 5], ['Germany', 55], ['Ghana', 8], ['Greece', 118], ['Grenada', 1], ['Guatemala', 13], ['Guinea-Bissau', 1], ['Hungary', 27], ['Iceland', 2], ['India', 78], ['Iran', 52], ['Ireland', 60], ['Isle of Man', 1], ['Italy', 603], ['Japan', 50], ['Kenya', 2], ['Laos', 1], ['Latvia', 1], ['Madagascar', 2], ['Malawi', 1], ['Malaysia', 6], ['Mexico', 529], ['Mongolia', 1], ['Myanmar', 1], ['New Zealand', 12], ['Norway', 3], ['Panama', 3], ['Papua New Guinea', 164], ['Paraguay', 141], ['Peru', 62], ['Philippines', 6], ['Romania', 53], ['Russia', 15], ['Saint Pierre and Miquelon', 3], ['Saint Vincent and the Grenadines', 3], ['Senegal', 1], ['Serbia', 72], ['Seychelles', 0], ['Slovakia', 153], ['South Africa', 121], ['South Korea', 250], ['Spain', 30], ['Sri Lanka', 1], ['Sweden', 10], ['Switzerland', 17], ['Tanzania', 1], ['Togo', 263], ['Trinidad and Tobago', 10], ['Ukraine', 31], ['United Arab Emirates', 18], ['United Kingdom', 432], ['United States of America', 124], ['Uruguay', 1], ['Venezuela', 909], ['Zambia', 0] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=6333', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 79, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);