function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 936], [': suriname', 1], ['Afghanistan', 1], ['Angola', 16], ['Argentina', 5], ['Australia', 5], ['Bangladesh', 3], ['Barbados', 4], ['Belgium', 3], ['Belize', 1], ['Bolivia', 6], ['Brazil', 231], ['Brunei', 68], ['Cambodia', 13], ['Cameroon', 77], ['Canada', 2], ['Central African Republic', 2], ['China', 765], ['Colombia', 16], ['Comoros', 15], ['Costa Rica', 1], ['Cuba', 7], ['Democratic Republic of the Congo', 171], ['El Salvador', 1], ['Equatorial Guinea', 19], ['Ethiopia', 1], ['Fiji', 11], ['France', 2186], ['French Guiana', 158], ['French Polynesia', 19], ['Gabon', 54], ['Ghana', 5], ['Greece', 71], ['Guatemala', 1], ['Guinea-Bissau', 18], ['Guyana', 110], ['Haiti', 5], ['Honduras', 5], ['Hong Kong', 1], ['Iceland', 2], ['India', 41], ['Indonesia', 35], ['Iran', 2], ['Iraq', 1], ['Ivory Coast', 12], ['Japan', 37], ['Kenya', 56], ['Laos', 10], ['Liberia', 63], ['Madagascar', 768], ['Malawi', 3], ['Malaysia', 112], ['Mayotte', 21], ['Mexico', 13], ['Micronesia', 4], ['Mozambique', 8], ['Myanmar', 7], ['Nepal', 2], ['New Caledonia', 12098], ['Nigeria', 8], ['Panama', 1], ['Papua New Guinea', 30], ['Paraguay', 13], ['Peru', 11], ['Philippines', 33], ['Republic of the Congo', 10], ['Russia', 3], ['Saint Helena, Ascension and Tristan da Cunha', 3], ['Saint Lucia', 1], ['Saint Pierre and Miquelon', 1], ['Samoa', 15], ['Sao Tome and Principe', 2], ['Serbia', 1], ['Seychelles', 3], ['Sierra Leone', 28], ['Singapore', 1], ['Solomon Islands', 4], ['South Africa', 103], ['South Georgia and the South Sandwich Islands', 12], ['South Korea', 2], ['Spain', 167], ['Sri Lanka', 7], ['Suriname', 59], ['Swaziland', 1], ['Taiwan', 19], ['Tanzania', 71], ['Thailand', 17], ['Tonga', 2], ['Turkey', 9], ['United States of America', 155], ['Uruguay', 7], ['Vanuatu', 1], ['Venezuela', 44], ['Vietnam', 238], ['Zambia', 2], ['Zimbabwe', 4], ['equatoria guinea', 1], ['kenya congo tanzanie', 1], ['tahiti', 3], ['tibet', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=19404', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 100, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);