function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 676], ['Algeria', 2], ['Angola', 19], ['Argentina', 2], ['Australia', 245], ['Bahrain', 3], ['Bangladesh', 7], ['Barbados', 1], ['Benin', 15], ['Brazil', 499], ['Cameroon', 12], ['Chile', 5], ['China', 83], ['Christmas Island', 1], ['Colombia', 7], ['Comoros', 1], ['Costa Rica', 3], ['Cuba', 5], ['Czech Republic', 1], ['Democratic Republic of the Congo', 10], ['Ecuador', 5], ['Egypt', 5], ['Eritrea', 5], ['Falkland Islands', 2], ['Fiji', 4], ['France', 8], ['French Guiana', 13], ['Gabon', 7], ['Ghana', 11], ['Greece', 1], ['Greenland', 2], ['Grenada', 1], ['Guatemala', 8], ['Guinea-Bissau', 29], ['Guyana', 14], ['Haiti', 1], ['Honduras', 0], ['Iceland', 7], ['India', 88], ['Indonesia', 98], ['Iraq', 1], ['Ireland', 4], ['Israel', 1], ['Italy', 3], ['Ivory Coast', 9], ['Jamaica', 1], ['Japan', 80], ['Jordan', 8], ['Kenya', 3], ['Kuwait', 4], ['Lebanon', 20], ['Liberia', 7], ['Madagascar', 37], ['Malaysia', 18], ['Martinique', 2], ['Mauritania', 9], ['Mauritius', 4], ['Mexico', 39], ['Mozambique', 21], ['Myanmar', 15], ['Namibia', 1], ['New Caledonia', 16], ['New Zealand', 36], ['Nicaragua', 12], ['Nigeria', 3], ['Norfolk Island', 30], ['Norway', 3], ['Oman', 40], ['Pakistan', 33], ['Palau', 1], ['Panama', 59], ['Papua New Guinea', 67], ['Peru', 13], ['Philippines', 472], ['Portugal', 4], ['Russia', 7], ['Saudi Arabia', 31], ['Senegal', 57], ['Sierra Leone', 6], ['Singapore', 1], ['Solomon Islands', 9], ['Somalia', 2], ['South Africa', 382], ['Spain', 12], ['Sri Lanka', 4], ['Suriname', 15], ['Switzerland', 4], ['Taiwan', 2658], ['Tanzania', 6], ['Thailand', 72], ['Thailand, Singapore', 109], ['Togo', 15], ['Trinidad and Tobago', 5], ['Turkey', 1], ['United Arab Emirates', 2], ['United Kingdom', 37], ['United States of America', 4665], ['Uruguay', 1], ['Vanuatu', 14], ['Venezuela', 3], ['Vietnam', 14], ['Yemen', 67], ['Zambia', 1], ['ambon island', 1], ['papua new gunea', 1], ['red sea', 0], ['socotra island', 8], ['south america', 0] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=11192', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 108, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);