function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 4404], ['Algeria', 2], ['Angola', 0], ['Antarctica', 14], ['Argentina', 10], ['Armenia', 2], ['Australia', 65], ['Austria', 2], ['Bahamas', 0], ['Belize', 0], ['Bolivia', 4], ['Bosnia and Herzegovina', 2], ['Brazil', 436], ['Cameroon', 32], ['Chile', 36], ['China', 12], ['Colombia', 5], ['Comoros', 2], ['Costa Rica', 0], ['Cuba', 0], ['Czech Republic', 1], ['Democratic Republic of the Congo', 24], ['Dominica', 0], ['Ecuador', 6], ['Falkland Islands', 8], ['France', 4], ['Gabon', 0], ['Germany', 6], ['Ghana', 0], ['Greece', 32], ['Guadeloupe', 0], ['Guatemala', 1], ['Guinea-Bissau', 22], ['Guyana', 0], ['Honduras', 0], ['Iceland', 7], ['India', 5], ['Indonesia', 1], ['Iran', 24], ['Iraq', 1], ['Ireland', 6], ['Israel', 1], ['Italy', 5], ['Ivory Coast', 2047], ['Jamaica', 1], ['Kazakhstan', 642], ['Lebanon', 2], ['Lesotho', 3100], ['Luxembourg', 1], ['Madagascar', 11], ['Malaysia', 0], ['Martinique', 0], ['Mauritius', 0], ['Mauritius, Madagascar', 1], ['Mexico', 2], ['Micronesia', 14], ['Mongolia', 4], ['Myanmar', 2], ['Nepal', 1], ['Netherlands', 2], ['New Zealand', 34], ['Nicaragua', 0], ['Nigeria', 5], ['Northern Mariana Islands', 4], ['Pakistan', 8], ['Palestine', 6], ['Panama', 0], ['Papua New Guinea', 0], ['Paraguay', 150], ['Peru', 6], ['Philippines', 2], ['Portugal', 1], ['Puerto Rico', 0], ['Republic of the Congo', 1], ['Russia', 1], ['Saint Vincent and the Grenadines', 0], ['Samoa', 2], ['Sao Tome and Principe', 1], ['Sierra Leone', 2022], ['Singapore', 1], ['Solomon Islands, Iceland', 2], ['South Africa', 42], ['Spain', 3], ['Sri Lanka', 1], ['Suriname', 0], ['Sweden', 4], ['Syria', 2], ['Taiwan', 73], ['Tanzania', 6], ['Thailand', 10], ['Togo', 6], ['Trinidad and Tobago', 0], ['Turkey', 52], ['Turks and Caicos Islands', 1], ['Uganda', 5], ['United Kingdom', 5], ['United States of America', 14], ['Venezuela', 3], ['Vietnam', 1], ['Yemen', 153], ['Zambia', 2022], ['south america', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=15663', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 102, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);