function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 10006], ['Afghanistan', 14], ['Angola', 2], ['Armenia', 2], ['Australia', 65], ['Barbados', 6], ['Belarus', 83], ['Belgium', 18], ['Belize', 13], ['Bolivia', 24], ['Botswana', 7], ['Brazil', 2196], ['Bulgaria', 0], ['Cameroon', 1], ['Canada', 45], ['Chile', 12], ['China', 114], ['Colombia', 43095], ['Cook Islands', 1], ['Costa Rica', 155], ['Cyprus', 1], ['Denmark', 5], ['Dominican Republic', 3], ['Ecuador', 892], ['Egypt', 1], ['Estonia', 3], ['Finland', 2], ['France', 24], ['French Guiana', 4], ['Germany', 3], ['Ghana', 2], ['Greece', 19], ['Grenada', 2], ['Guam', 53], ['Guatemala', 19], ['Guinea-Bissau', 46], ['Guyana', 5], ['Haiti', 2], ['Honduras', 5], ['Hong Kong', 13], ['Hungary', 2], ['Iceland', 540], ['India', 1032], ['Indonesia', 123], ['Iraq', 2], ['Ireland', 10], ['Ireland, United Kingdom', 42], ['Israel', 28], ['Italy', 1], ['Jamaica', 1], ['Japan', 6], ['Kenya', 31], ['Kenya, Uganda', 6], ['Kenya, Zimbabwe', 15], ['Kiribati', 2], ['Laos', 24], ['Laos, Thailand', 44], ['Luxembourg', 91], ['Madagascar', 11], ['Malawi', 1], ['Malaysia', 52], ['Maldives', 2], ['Mauritania', 3], ['Mauritius', 1], ['Mexico', 153], ['Mongolia', 26], ['Montserrat', 156], ['Morocco', 41], ['Myanmar', 19], ['Namibia', 1], ['Nepal', 125], ['Netherlands', 14], ['New Caledonia', 11], ['New Zealand', 21], ['Nicaragua', 4], ['Norway', 3], ['Pakistan', 31], ['Palau', 2], ['Palestine', 3], ['Panama', 10], ['Papua New Guinea', 169], ['Peru', 90], ['Philippines', 83], ['Poland', 5], ['Russia', 106], ['Saint Vincent and the Grenadines', 24], ['Saudi Arabia', 32], ['Senegal', 24], ['Seychelles', 1], ['Singapore', 4], ['Slovakia', 60], ['Slovenia', 2], ['Solomon Islands', 15], ['South Africa', 115], ['Spain', 38], ['Sri Lanka', 9], ['Sudan', 1], ['Suriname', 2], ['Sweden', 42], ['Switzerland', 56], ['Taiwan', 21], ['Taiwan, Philippines, Nepal, Malaysia, India', 34], ['Tanzania', 2], ['Thailand', 258], ['Thailand, South Korea, Japan', 15], ['Trinidad and Tobago', 2], ['Turkey', 4], ['Uganda', 52], ['United Kingdom', 95], ['United Kingdom, Spain, Egypt', 25], ['United States of America', 184], ['Vanuatu', 15], ['Venezuela', 33], ['Vietnam', 57], ['Yemen', 2], ['Zambia', 10], ['ascension island', 41], ['niue island', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=61382', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 118, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);