function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 46925], ['Afghanistan', 14], ['Albania', 2], ['Algeria', 16], ['Algeria, Morocco', 44], ['American Samoa', 43], ['Angola', 2], ['Argentina', 418], ['Austria', 3], ['Azerbaijan', 1], ['Belgium', 2], ['Benin, Cape Verde', 13], ['Bolivia', 495], ['Botswana', 1], ['Brazil', 157], ['Canada', 2], ['Central African Republic, Kenya, Senegal', 11], ['Chile', 2], ['Colombia', 9], ['Croatia', 1], ['Croatia, Cyprus, Greece, Iran, Israel, Italy, Jordan, Lebanon', 104], ['Croatia, Egypt, United Kingdom, France, Greece, Iran, Israel', 174], ['Croatia, France, Germany, Greece, Iran, Italy, Kyrgyzstan, Leban', 216], ['Cyprus', 66], ['Czech Republic', 2], ['Democratic Republic of the Congo', 1220], ['Ecuador', 31], ['Egypt', 255], ['Equatorial Guinea', 1], ['Eritrea', 2], ['Finland', 8], ['France', 39], ['France, Switzerland, italien und osterreich', 1], ['French Guiana', 6], ['Gambia', 1], ['Germany', 3], ['Greece', 26], ['Guam', 6], ['India', 26], ['Iran', 136], ['Ireland', 1], ['Israel', 29], ['Italy', 8], ['Japan', 1], ['Jordan', 15], ['Kazakhstan', 9], ['Kenya', 2], ['Kyrgyzstan', 8], ['Lebanon', 222], ['Lesotho', 1], ['Macedonia', 1], ['Malaysia', 4], ['Morocco', 64], ['Mozambique', 3], ['Netherlands', 1], ['Nigeria', 2], ['Oman', 59], ['Palestine', 76], ['Papua New Guinea', 83], ['Paraguay', 5], ['Peru', 14], ['Portugal', 0], ['Puerto Rico', 1], ['Russia', 35], ['Saudi Arabia', 6], ['Serbia', 1], ['Sierra Leone', 1], ['Slovenia', 1], ['South Africa', 17], ['Spain', 8], ['Sudan', 1], ['Syria', 61], ['Tajikistan', 3], ['Togo', 1], ['Tunisia', 9], ['Turkey', 128], ['United Arab Emirates', 45], ['United States of America', 308], ['Uzbekistan', 11], ['Venezuela', 2], ['Yemen', 12], ['Zimbabwe', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=51744', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 82, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);