function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 313], ['Algeria', 2], ['American Samoa', 1], ['Angola', 40], ['Ashmore and Cartier Islands', 8], ['Australia', 224], ['Benin', 4], ['Bermuda', 4], ['Brazil', 64], ['Cameroon', 1], ['Chile', 1], ['China', 5], ['Christmas Island', 4], ['Cook Islands', 2], ['Cuba', 2], ['CuraƧao', 3], ['Dominica', 1], ['Egypt', 5], ['Equatorial Guinea', 1], ['Fiji', 1], ['France', 2], ['French Polynesia', 8], ['Gabon', 1], ['Greece', 6], ['Honduras', 6], ['India', 69], ['Indonesia', 24], ['Israel', 16], ['Italy', 4], ['Japan', 26], ['Jordan', 5], ['Kenya', 1], ['Lebanon', 17], ['Liberia', 2], ['Malaysia', 22], ['Maldives', 3], ['Marshall Islands', 2], ['Mauritius', 2], ['Mexico', 21], ['Micronesia', 5], ['Mozambique', 5], ['Myanmar', 16], ['New Caledonia', 6], ['New Zealand', 6], ['Nigeria', 3], ['Norfolk Island', 1], ['Oman', 5], ['Palau', 1], ['Panama', 6], ['Papua New Guinea', 2], ['Philippines', 12], ['Pitcairn', 3], ['Puerto Rico', 2], ['Republic of the Congo', 2], ['Saint Helena, Ascension and Tristan da Cunha', 9], ['Sao Tome and Principe', 1], ['Senegal', 8], ['Solomon Islands', 6], ['Somalia', 13], ['South Africa', 54], ['Spain', 6], ['Taiwan', 180], ['Tanzania', 8], ['Thailand', 7], ['Togo', 4], ['Tonga', 0], ['Turkey', 0], ['United Kingdom, british overseas territories', 0], ['United States of America', 5], ['Uruguay', 1], ['Vanuatu', 1], ['Vietnam', 5], ['Yemen', 1], ['ascension island', 19], ['canary islands', 6], ['cape verde islands', 6], ['gulf of guinea', 1], ['gulf of thailand', 1], ['papua new gunea', 3], ['principe island', 28], ['sao tome island', 16] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=1387', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 81, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);