function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 268], ['Afghanistan', 2], ['Algeria', 1], ['Andorra', 68], ['Angola', 1], ['Argentina', 127], ['Armenia', 4], ['Austria', 12], ['Bahamas', 15], ['Belgium', 8], ['Belize', 15], ['Bolivia', 3], ['Bosnia and Herzegovina', 1], ['Brazil', 478], ['Burkina Faso', 1], ['Cameroon', 12], ['Canada', 291], ['Central African Republic', 2], ['Chile', 12], ['China', 62], ['Colombia', 1], ['Costa Rica', 54], ['Croatia', 2], ['Cuba', 4], ['Cyprus', 18], ['Czech Republic', 31], ['Democratic Republic of the Congo', 32], ['Democratic Republic of the Congo, Rwanda', 2], ['Denmark', 6], ['Dominican Republic', 3], ['Ecuador', 54], ['Egypt', 1], ['El Salvador', 7], ['Eritrea', 4], ['Finland', 20], ['France', 120], ['Georgia', 1], ['Germany', 19], ['Greece', 3], ['Guatemala', 4], ['Guyana', 1], ['Honduras', 6], ['Hungary', 143], ['India', 18], ['Indonesia', 1], ['Iran', 23], ['Ireland', 5], ['Israel', 1], ['Italy', 13], ['Jamaica', 1], ['Japan', 651], ['Jersey', 1], ['Jordan', 2], ['Kazakhstan', 3], ['Kenya', 4], ['Malawi', 8], ['Malaysia', 1], ['Mexico', 44], ['Moldova', 1], ['Mongolia', 9], ['Morocco', 10], ['Myanmar', 1], ['Nepal', 6], ['Netherlands', 1], ['Nicaragua', 5], ['Niger', 20], ['Nigeria', 4], ['Norway', 22], ['Pakistan', 5], ['Panama', 2], ['Peru', 13], ['Poland', 3], ['Portugal', 27], ['Romania', 31], ['Russia', 37], ['Saint Vincent and the Grenadines', 4], ['Serbia', 5], ['Seychelles', 4], ['Sierra Leone', 1], ['Slovakia', 9], ['Slovenia', 6], ['South Africa', 4], ['Spain', 50], ['Sri Lanka', 3], ['Sweden', 61], ['Switzerland', 2], ['Taiwan', 18], ['Tajikistan', 5], ['Thailand', 3], ['Togo', 9], ['Trinidad and Tobago', 5], ['Tunisia', 2], ['Turkey', 115], ['Turkmenistan', 2], ['Uganda', 3], ['Ukraine', 2], ['United Kingdom', 112], ['United States of America', 1183], ['Uruguay', 1], ['Uzbekistan', 3], ['Venezuela', 29], ['Yemen', 2], ['Zimbabwe', 18] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=4553', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 103, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);