function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 5684], ['Algeria', 5], ['Angola', 8], ['Argentina', 15], ['Australia', 614], ['Austria', 8], ['Bolivia', 6], ['Botswana', 13], ['Brazil', 710], ['Cameroon', 3], ['Canada', 25], ['Cape Verde', 1], ['Chile', 31], ['China', 21], ['Colombia', 4], ['Czech Republic', 66], ['Czech Republic, Denmark, Finland, France, Germany, Norway', 38], ['Democratic Republic of the Congo', 4], ['Denmark', 104], ['Ecuador', 4], ['Egypt', 1], ['Eritrea', 4], ['Ethiopia', 37], ['Finland', 40], ['France', 8], ['Ghana', 6], ['Greenland', 100], ['Guam', 10], ['Iceland', 10], ['India', 1], ['Indonesia', 43], ['Israel', 52], ['Italy', 39], ['Ivory Coast', 1], ['Kenya', 240], ['Lesotho', 3], ['Madagascar', 1526], ['Malawi', 10], ['Malaysia', 1], ['Malta', 7], ['Mauritius', 3], ['Mexico', 20], ['Morocco', 3], ['Mozambique', 5], ['Namibia', 422], ['New Caledonia', 3], ['Nigeria', 18], ['Norway', 74], ['Oman', 1], ['Pakistan', 419], ['Papua New Guinea', 149], ['Paraguay', 31], ['Peru', 9], ['Russia', 14], ['Saudi Arabia', 2], ['Senegal', 1], ['Seychelles', 3], ['Sierra Leone', 2], ['Slovakia', 1], ['Somalia', 1], ['South Africa', 431], ['Spain', 21], ['Sudan', 2], ['Sweden', 109], ['Tanzania', 10], ['Uganda', 87], ['United States of America', 9], ['Uruguay', 3], ['Uzbekistan', 10], ['Vanuatu', 7], ['Yemen', 25], ['Zambia', 7], ['Zimbabwe', 161], ['malta island', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=11568', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 74, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);