function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 10919], ['Algeria', 34], ['American Samoa', 1], ['Argentina', 1078], ['Armenia', 5], ['Australia', 190], ['Austria', 125], ['Bahamas', 4], ['Belgium', 54], ['Bermuda', 20], ['Bolivia', 2], ['Brazil', 15], ['Brunei', 5], ['Bulgaria', 7], ['Burundi', 5], ['Cambodia', 1], ['Cameroon', 15], ['Canada', 139], ['Cape Verde', 2], ['Chile', 246], ['China', 215], ['Colombia', 15], ['Costa Rica', 34], ['Cuba', 3], ['Cyprus', 1], ['Czech Republic', 136], ['Democratic Republic of the Congo', 17], ['Denmark', 15], ['Dominican Republic', 42], ['Ecuador', 8], ['Egypt', 7], ['Fiji', 1], ['Finland', 9], ['France', 41], ['French Polynesia', 1], ['Gabon', 1], ['Georgia', 25], ['Germany', 141], ['Greece', 17], ['Greenland', 1], ['Grenada', 3], ['Guam', 6], ['Guatemala', 10], ['Haiti', 11], ['Honduras', 2], ['Hungary', 15], ['Iceland', 216], ['India', 539], ['Indonesia', 18], ['Iran', 3], ['Ireland', 6], ['Italy', 29], ['Jamaica', 1], ['Japan', 242], ['Kyrgyzstan', 250], ['Laos', 2], ['Luxembourg', 4], ['Madagascar', 30], ['Malaysia', 14], ['Mauritius', 2], ['Mexico', 166], ['Mongolia', 30], ['Morocco', 11], ['Myanmar', 24], ['Nepal', 17], ['Netherlands', 24], ['New Zealand', 153], ['Nigeria', 2], ['Norway', 30], ['Pakistan', 7], ['Panama', 2], ['Papua New Guinea', 6], ['Paraguay', 1], ['Peru', 12], ['Philippines', 7], ['Poland', 15], ['Puerto Rico', 37], ['Republic of the Congo', 3], ['Romania', 5], ['Russia', 382], ['Saint Helena, Ascension and Tristan da Cunha', 1], ['Saint Pierre and Miquelon', 9], ['Saint Vincent and the Grenadines', 16], ['Senegal', 3], ['Serbia', 110], ['Seychelles', 1], ['Singapore', 2], ['Slovakia', 16], ['South Africa', 10], ['South Korea', 22], ['Spain', 2059], ['Sri Lanka', 15], ['Sweden', 22], ['Switzerland', 88], ['Taiwan', 145], ['Thailand', 31], ['Trinidad and Tobago', 16], ['Turkey', 1], ['Turkmenistan', 4], ['Uganda', 1], ['United Arab Emirates', 50], ['United Kingdom', 74], ['United States of America', 822], ['Uruguay', 34], ['Venezuela', 15], ['Vietnam', 3], ['Wake Island', 17] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=19521', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 107, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);