function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 7849], ['Afghanistan, Iran, Kyrgyzstan, Kazakhstan, Tajikistan, Turkmenis', 1], ['Algeria', 13], ['Angola', 1], ['Antigua and Barbuda', 2], ['Argentina', 95], ['Australia', 1278], ['Azerbaijan', 1], ['Bahamas', 31], ['Belize', 20], ['Bhutan', 11], ['Bolivia', 2504], ['Brazil', 2580], ['Burkina Faso', 1], ['Burundi', 1], ['Cambodia', 1], ['Cameroon', 19], ['Chile', 38], ['China', 56], ['Colombia', 265], ['Costa Rica', 1051], ['Cuba', 3], ['CuraƧao', 238], ['Democratic Republic of the Congo', 80], ['Denmark', 36], ['Djibouti', 1], ['Dominica', 3], ['Dominican Republic', 9], ['Ecuador', 149], ['El Salvador', 5], ['Ethiopia', 2], ['French Guiana', 455], ['Gabon', 4], ['Ghana', 5], ['Gibraltar', 2], ['Greece', 1], ['Grenada', 6], ['Guadeloupe', 18], ['Guam', 1], ['Guatemala', 1010], ['Guyana', 13], ['Haiti', 2], ['Honduras', 52], ['Hong Kong', 2], ['India', 235], ['Indonesia', 16], ['Iran', 32], ['Israel, Saudi Arabia, United Arab Emirates', 1], ['Ivory Coast', 2], ['Jamaica', 1], ['Japan', 38], ['Kenya', 119], ['Laos', 69], ['Liberia', 1], ['Malaysia', 319], ['Mexico', 593], ['Mozambique', 5], ['Myanmar', 61], ['Namibia', 10], ['Nepal', 52], ['New Caledonia', 10], ['New Zealand', 1], ['Nicaragua', 37], ['Panama', 842], ['Papua New Guinea', 1], ['Paraguay', 22], ['Peru', 3088], ['Puerto Rico', 6], ['Russia', 4], ['Rwanda', 3], ['Saint Helena, Ascension and Tristan da Cunha', 2], ['Somalia', 1], ['South Africa', 4], ['South Korea', 6], ['Suriname', 2], ['Switzerland', 5], ['Taiwan', 51], ['Tanzania', 17], ['Thailand', 105], ['Togo', 9], ['Trinidad and Tobago', 10], ['Turkey', 1], ['Uganda', 7], ['United Kingdom', 2], ['United States of America', 549], ['Venezuela', 932], ['Vietnam', 98], ['Wake Island', 168], ['Yemen', 99], ['Zambia', 47], ['Zimbabwe', 14] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=25612', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 91, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);