function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 4214], ['Afghanistan', 0], ['Algeria', 16], ['American Samoa', 2], ['Angola', 1], ['Anguilla', 0], ['Antarctica', 4], ['Argentina', 30], ['Ashmore and Cartier Islands', 1], ['Australia', 176], ['Austria', 17], ['Bahamas', 1], ['Belgium', 4], ['Belize', 2], ['Benin', 2], ['Bermuda', 7], ['Botswana', 49], ['Brazil', 203], ['Bulgaria', 4], ['Burkina Faso', 1], ['Cameroon', 1161], ['Canada', 82], ['Cape Verde', 21], ['Chile', 16], ['China', 74], ['Christmas Island', 2], ['Colombia', 7], ['Costa Rica', 8], ['Croatia', 5], ['Cuba', 30], ['CuraƧao', 16], ['Czech Republic', 9], ['Democratic Republic of the Congo', 4], ['Denmark', 1], ['Egypt', 9], ['Ethiopia', 3], ['Falkland Islands', 2], ['Faroe Islands', 1], ['Fiji', 1], ['France', 192], ['French Polynesia', 9], ['Gabon', 2], ['Gambia', 5], ['Germany', 25], ['Ghana', 2], ['Greece', 18], ['Greenland', 2], ['Guinea-Bissau', 44], ['Hong Kong', 1], ['Iceland', 7], ['India', 155], ['Indonesia', 27], ['Iran', 1], ['Iraq', 2], ['Ireland', 3], ['Isle of Man', 1], ['Israel', 7], ['Italy', 58], ['Ivory Coast', 10], ['Jamaica', 2], ['Japan', 569], ['Jordan', 8], ['Kenya', 31], ['Laos', 14], ['Madagascar', 10], ['Malaysia', 93], ['Mauritania', 1], ['Mayotte', 1], ['Mexico', 121], ['Micronesia', 1], ['Morocco', 18], ['Mozambique', 2], ['Myanmar', 1], ['New Caledonia', 46], ['New Zealand', 4], ['Nigeria', 1], ['Norway', 19], ['Oman', 5], ['Palau', 5], ['Panama', 46], ['Paraguay', 4], ['Peru', 14], ['Philippines', 4], ['Portugal', 23], ['Puerto Rico', 11], ['Qatar', 1], ['Republic of the Congo', 1], ['Romania', 2], ['Russia', 5], ['Saint Lucia', 2], ['Sao Tome and Principe', 13], ['Senegal', 11], ['Serbia', 3], ['Seychelles', 1], ['Sierra Leone', 2], ['Singapore', 1], ['Somalia', 2], ['South Africa', 24], ['South Georgia and the South Sandwich Islands', 2], ['South Korea', 10], ['Spain', 92], ['Sri Lanka', 3], ['Sudan', 10], ['Sweden', 49], ['Switzerland', 5], ['Taiwan', 3], ['Tanzania', 10], ['Trinidad and Tobago', 1], ['Tunisia', 27], ['Turkey', 3], ['Uganda', 1], ['Ukraine', 4], ['United Kingdom', 20], ['United States of America', 219], ['Uruguay', 13], ['Venezuela', 2], ['Vietnam', 16], ['Zambia', 2], ['Zimbabwe', 2], ['island australia', 2], ['qeshm island', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=8376', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 121, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);