function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 24228], ['Afghanistan', 8], ['Algeria', 200], ['American Samoa', 14], ['Angola', 89], ['Argentina', 365], ['Australia', 23], ['Austria', 49], ['Belize', 39], ['Bhutan', 10], ['Bolivia', 250], ['Bosnia and Herzegovina', 9], ['Brazil', 12867], ['Brunei', 8], ['Burkina Faso', 2], ['Cambodia', 55], ['Cameroon', 492], ['Canada', 338], ['Cape Verde', 2], ['Central African Republic', 1], ['Chile', 228], ['China', 1797], ['Colombia', 233], ['Comoros', 2], ['Costa Rica', 4937], ['Costa Rica, Ecuador, Guyana', 1], ['Croatia', 12], ['Cuba', 105], ['Czech Republic', 0], ['Democratic Republic of the Congo', 48], ['Dominica', 4], ['Dominican Republic', 31], ['Ecuador', 191], ['Egypt', 2], ['El Salvador', 1], ['Ethiopia', 14], ['Fiji', 98], ['Finland', 1], ['France', 120], ['French Guiana', 9], ['Georgia', 2], ['Germany', 49], ['Ghana', 1933], ['Greece', 1635], ['Grenada', 6], ['Guadeloupe', 1], ['Guam', 1], ['Guatemala', 142], ['Guinea-Bissau', 964], ['Guyana', 60], ['Haiti', 4], ['Honduras', 7], ['Hong Kong', 1], ['Hungary', 1], ['Iceland', 16], ['India', 1061], ['Indonesia', 381], ['Iran', 20], ['Italy', 7], ['Ivory Coast', 6], ['Jamaica', 14], ['Japan', 1237], ['Kenya', 5], ['Kosovo', 271], ['Kyrgyzstan', 1], ['Laos', 1396], ['Latvia', 5], ['Liberia', 4], ['Lithuania', 1], ['Macedonia', 2], ['Madagascar', 1640], ['Malawi', 43], ['Malaysia', 1189], ['Mauritius', 2], ['Mexico', 1222], ['Morocco', 1], ['Mozambique', 1], ['Myanmar', 269], ['Nepal', 83], ['Netherlands', 5], ['New Caledonia', 612], ['New Zealand', 7], ['Nicaragua', 251], ['Nigeria', 2], ['North Korea', 1], ['Pakistan', 23], ['Panama', 12828], ['Papua New Guinea', 181], ['Paraguay', 70], ['Peru', 547], ['Philippines', 169], ['Poland', 62], ['Portugal', 13], ['Puerto Rico', 1], ['Republic of the Congo', 1], ['Russia', 365], ['Rwanda', 2], ['Saint Lucia', 4], ['Sao Tome and Principe', 2], ['Serbia', 4], ['Seychelles', 1], ['Sierra Leone', 3], ['Solomon Islands', 20], ['South Africa', 1962], ['South Korea', 230], ['Spain', 11], ['Sri Lanka', 41], ['Sudan', 3], ['Suriname', 13], ['Switzerland', 1153], ['Taiwan', 403], ['Tajikistan', 1], ['Tanzania', 56], ['Thailand', 2542], ['Trinidad and Tobago', 199], ['Tunisia', 1], ['Turkey', 2139], ['Uganda', 2], ['Ukraine', 1], ['United Kingdom', 351], ['United States of America', 2806], ['Uruguay', 64], ['Uzbekistan', 2], ['Vanuatu', 1], ['Venezuela', 531], ['Vietnam', 767], ['Yemen', 1], ['Zimbabwe', 44] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=89064', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 128, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);