function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 10378], ['Algeria', 34], ['American Samoa', 1], ['Argentina', 686], ['Armenia', 5], ['Australia', 10], ['Austria', 54], ['Bahamas', 4], ['Belgium', 18], ['Bermuda', 14], ['Bolivia', 1], ['Brazil', 7], ['Bulgaria', 6], ['Cambodia', 1], ['Cameroon', 15], ['Canada', 19], ['Chile', 219], ['China', 20], ['Colombia', 14], ['Costa Rica', 26], ['Cuba', 3], ['Cyprus', 1], ['Czech Republic', 6], ['Democratic Republic of the Congo', 1], ['Denmark', 11], ['Dominican Republic', 42], ['Ecuador', 3], ['Egypt', 2], ['Fiji', 1], ['Finland', 3], ['France', 14], ['French Polynesia', 1], ['Georgia', 25], ['Germany', 18], ['Greece', 14], ['Greenland', 1], ['Guatemala', 4], ['Hungary', 14], ['Iceland', 213], ['India', 44], ['Indonesia', 8], ['Iran', 3], ['Italy', 17], ['Japan', 14], ['Kyrgyzstan', 246], ['Mauritius', 2], ['Mexico', 117], ['Mongolia', 30], ['Morocco', 8], ['Nepal', 1], ['Netherlands', 3], ['New Zealand', 1], ['Pakistan', 6], ['Panama', 1], ['Paraguay', 1], ['Peru', 6], ['Philippines', 1], ['Poland', 4], ['Puerto Rico', 29], ['Republic of the Congo', 1], ['Romania', 3], ['Russia', 73], ['Saint Pierre and Miquelon', 9], ['Saint Vincent and the Grenadines', 5], ['Serbia', 6], ['Slovakia', 10], ['South Africa', 3], ['South Korea', 12], ['Spain', 28], ['Switzerland', 20], ['Taiwan', 133], ['Thailand', 3], ['Trinidad and Tobago', 7], ['Turkey', 1], ['Turkmenistan', 4], ['United Arab Emirates', 50], ['United Kingdom', 32], ['United States of America', 136], ['Uruguay', 34], ['Venezuela', 13] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=13034', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 80, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);