function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 225], ['Australia', 36], ['Bahrain', 2], ['Bangladesh', 2], ['Benin', 4], ['Brazil', 439], ['Cameroon', 1], ['Chile', 2], ['China', 1], ['Cuba', 1], ['Egypt', 2], ['Fiji', 2], ['France', 1], ['French Guiana', 10], ['Gabon', 4], ['Ghana', 7], ['Greece', 1], ['Guinea-Bissau', 8], ['Guyana', 6], ['Iceland', 3], ['India', 55], ['Indonesia', 41], ['Ireland', 1], ['Italy', 2], ['Ivory Coast', 6], ['Jamaica', 1], ['Japan', 3], ['Jordan', 3], ['Kuwait', 4], ['Lebanon', 5], ['Liberia', 4], ['Malaysia', 9], ['Mauritius', 5], ['Mexico', 3], ['Mozambique', 4], ['Nicaragua', 1], ['Nigeria', 3], ['Oman', 2], ['Pakistan', 15], ['Papua New Guinea', 159], ['Peru', 8], ['Saudi Arabia', 24], ['Senegal', 14], ['Sierra Leone', 5], ['Solomon Islands', 9], ['South Africa', 17], ['Spain', 3], ['Suriname', 13], ['Switzerland', 1], ['Taiwan', 564], ['Tanzania', 1], ['Thailand', 0], ['Togo', 13], ['Trinidad and Tobago', 3], ['Turkey', 0], ['United Kingdom', 4], ['United States of America', 1930], ['Vanuatu', 1], ['Venezuela', 2], ['Vietnam', 12], ['Yemen', 5], ['red sea', 0], ['socotra island', 4] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=3716', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 63, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);