function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1807], ['Argentina', 6], ['Australia', 881], ['Austria', 3], ['Bahamas', 108], ['Belize', 11], ['Benin', 6], ['Bolivia', 4], ['Brazil', 86], ['Bulgaria', 27], ['Cameroon', 21], ['Canada', 96], ['Central African Republic', 24], ['Chile', 20], ['China', 1606], ['Colombia', 23], ['Costa Rica', 7772], ['Croatia', 1], ['Cuba', 1], ['Cyprus', 1], ['Czech Republic', 436], ['Democratic Republic of the Congo', 1338], ['Denmark', 74], ['Dominican Republic', 7], ['Ecuador', 1113], ['Egypt', 3], ['Ethiopia', 3], ['Finland', 431], ['France', 532], ['France, Spain', 1], ['Gabon', 10], ['Germany', 28], ['Ghana', 117], ['Greece', 18], ['Grenada', 11], ['Guadeloupe', 8], ['Guam', 21], ['Guatemala', 3], ['Guinea-Bissau', 21], ['Honduras', 14], ['Hong Kong', 38], ['Hungary', 29], ['India', 73], ['Indonesia', 9], ['Iran', 52], ['Iraq', 7], ['Ireland', 9], ['Israel', 1], ['Italy', 1082], ['Ivory Coast', 68], ['Japan', 33], ['Kenya', 170], ['Liberia', 2], ['Madagascar', 2], ['Malawi', 2], ['Malaysia', 6], ['Maldives', 1], ['Malta', 33], ['Mexico', 245], ['Mongolia', 1], ['Morocco', 4], ['Namibia', 47], ['Nepal', 7519], ['Netherlands', 2], ['New Zealand', 1], ['Nicaragua', 1], ['Norway', 25], ['Pakistan', 2], ['Peru', 58], ['Philippines', 3], ['Poland', 3], ['Portugal', 159], ['Puerto Rico', 1], ['Republic of the Congo', 1], ['Romania', 117], ['Russia', 78], ['Rwanda', 6], ['Saint Kitts and Nevis', 1], ['Senegal', 7], ['Serbia', 201], ['Sierra Leone', 1], ['Slovakia', 3], ['Slovenia', 9], ['South Africa', 738], ['South Korea', 3], ['Spain', 2640], ['Sri Lanka', 8], ['Swaziland', 2], ['Sweden', 1690], ['Switzerland', 12], ['Taiwan', 177], ['Tanzania', 76], ['Thailand', 22], ['Trinidad and Tobago', 45], ['Turkey', 11], ['Turkey, Yemen, Israel', 1], ['Uganda', 33], ['Ukraine', 247], ['United Kingdom', 324], ['United States of America', 801], ['Uruguay', 16], ['Venezuela', 8], ['Vietnam', 1], ['Zambia', 1], ['Zimbabwe', 21] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=33682', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 105, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);