function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 3883], ['Afghanistan', 13], ['Albania', 2], ['Algeria', 13], ['American Samoa', 25], ['Angola', 532], ['Argentina', 733], ['Australia', 176], ['Austria', 2], ['Bhutan', 4], ['Bolivia', 199], ['Botswana', 109], ['Brazil', 1994], ['Burundi', 852], ['Cameroon', 8], ['Canada', 51], ['Central African Republic', 1], ['Chile', 818], ['China', 1289], ['China, South Korea', 1], ['Colombia', 328], ['Comoros', 1], ['Costa Rica', 48], ['Croatia', 1], ['Cuba', 10], ['Democratic Republic of the Congo', 84], ['Denmark', 40], ['Dominican Republic', 17], ['Ecuador', 62], ['El Salvador', 10], ['Ethiopia', 3], ['Fiji', 2], ['France', 3], ['French Guiana', 20], ['Gabon', 233], ['Germany', 23], ['Ghana', 4], ['Greece', 15], ['Grenada', 6], ['Guatemala', 18], ['Guinea-Bissau', 101], ['Guyana', 6], ['Haiti', 2], ['Hong Kong', 4], ['Iceland', 4], ['India', 2477], ['Indonesia', 46], ['Iran', 43], ['Israel', 2], ['Israel, Lebanon', 4], ['Italy', 2], ['Ivory Coast', 769], ['Jamaica', 3], ['Japan', 12], ['Jordan', 8], ['Kenya', 1577], ['Laos', 11], ['Lesotho', 4], ['Macedonia', 19], ['Madagascar', 64], ['Malawi', 1], ['Malaysia', 161], ['Malta', 1], ['Mauritius', 6], ['Mayotte', 9], ['Mexico', 103], ['Mozambique', 2], ['Myanmar', 9], ['Namibia', 68], ['Nepal', 27], ['New Caledonia', 81], ['Nicaragua', 1], ['Niger', 3], ['Nigeria', 18], ['North Korea', 9], ['Pakistan', 15], ['Panama', 35], ['Papua New Guinea', 182], ['Paraguay', 11], ['Peru', 31], ['Philippines', 6], ['Portugal', 89], ['Republic of the Congo', 6], ['Russia', 4], ['Saint Helena, Ascension and Tristan da Cunha', 24], ['Saint Kitts and Nevis', 9], ['Saint Pierre and Miquelon', 9], ['Sao Tome and Principe', 4], ['Senegal', 5], ['Serbia', 6], ['Seychelles', 40], ['Sierra Leone', 1], ['Singapore', 32], ['Slovakia', 5], ['Slovenia', 290], ['South Africa', 1266], ['South Korea', 53], ['South Sudan', 1], ['Spain', 283], ['Sri Lanka', 439], ['Sudan', 2], ['Suriname', 1], ['Switzerland', 151], ['Taiwan', 4], ['Tanzania', 63], ['Thailand', 23], ['Trinidad and Tobago', 45], ['Tunisia', 1], ['Turkey', 74], ['Uganda', 4], ['United Arab Emirates', 1121], ['United Kingdom', 1], ['United States of America', 3751], ['Uruguay', 206], ['Venezuela', 63], ['Vietnam', 99], ['Western Sahara', 1], ['Yemen', 2], ['Zambia', 3], ['Zimbabwe', 15], ['ascension island', 267], ['netherlands new guinea', 13] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=26046', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 122, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);