function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1537], ['American Samoa', 5], ['Angola', 1], ['Ashmore and Cartier Islands', 4], ['Australia', 104], ['Azerbaijan', 27], ['Bahamas', 7], ['Bangladesh', 1], ['Barbados', 1], ['Belize', 3], ['Belize, Honduras', 0], ['Bonaire, Sint Eustatius and Saba', 12], ['Brazil', 5], ['Brunei', 16], ['Cambodia', 3], ['Cape Verde', 8], ['Chile', 0], ['China', 159], ['Croatia', 14], ['Cuba', 1], ['CuraƧao', 1], ['Democratic Republic of the Congo', 4], ['Djibouti', 2], ['Egypt', 104], ['El Salvador', 18], ['Eritrea', 6], ['Ethiopia', 2], ['Fiji', 96], ['France', 21], ['French Polynesia', 5], ['Georgia', 23], ['Ghana', 6], ['Guam', 3], ['Guinea-Bissau', 9], ['Honduras', 4], ['Hong Kong', 5], ['Iceland', 38], ['India', 40], ['Indonesia', 535], ['Iran', 161], ['Iraq', 5], ['Israel', 15], ['Italy', 34], ['Jamaica', 5], ['Japan', 695], ['Jordan', 1], ['Kazakhstan', 7], ['Kenya', 2], ['Kiribati', 1], ['Kuwait', 3], ['Laos', 180], ['Lebanon', 14], ['Macao', 3], ['Madagascar', 9], ['Malaysia', 109], ['Maldives', 3], ['Marshall Islands', 36], ['Mauritania', 2], ['Mauritius', 12], ['Mayotte', 4], ['Mexico', 16], ['Micronesia', 11], ['Mozambique', 15], ['Myanmar', 6], ['New Caledonia', 6], ['Nicaragua', 3], ['Niger', 2], ['Norfolk Island', 4], ['Northern Mariana Islands', 1], ['Norway', 3], ['Oman', 18], ['Pakistan', 4], ['Palau', 98], ['Panama', 10], ['Papua New Guinea', 77], ['Peru', 0], ['Philippines', 91], ['Pitcairn', 1], ['Portugal', 4], ['Russia', 2], ['Saint Vincent and the Grenadines', 3], ['Sao Tome and Principe', 6], ['Saudi Arabia', 110], ['Senegal', 7], ['Serbia', 3], ['Seychelles', 11], ['Singapore', 126], ['Solomon Islands', 9], ['South Africa', 134], ['Spain', 36], ['Sri Lanka', 6], ['Sudan', 35], ['Sweden', 1], ['Taiwan', 258], ['Tanzania', 1], ['Thailand', 116], ['Tonga', 9], ['Trinidad and Tobago', 5], ['Turkey', 8], ['Turkmenistan', 7], ['Ukraine', 6], ['United Kingdom', 3], ['United States of America', 117], ['Vanuatu', 6], ['Vietnam', 56], ['Yemen', 6], ['ascension island', 4], ['papua new gunea', 12], ['socotra island', 13] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=5617', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 109, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);