function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1096], ['Angola', 17], ['Austria', 855], ['Belgium', 11], ['Benin', 10], ['Bolivia', 11], ['Botswana', 1], ['Brazil', 186], ['Brunei', 1], ['Cameroon', 398], ['Central African Republic', 14], ['China', 10], ['Colombia', 21], ['Comoros', 1], ['Costa Rica', 4], ['Cuba', 68], ['Czech Republic', 3], ['Democratic Republic of the Congo', 872], ['Ecuador', 27], ['Equatorial Guinea', 30], ['France', 7], ['French Guiana', 0], ['Gabon', 136], ['Germany', 1], ['Ghana', 58], ['Guatemala', 35], ['Guinea-Bissau', 24], ['Guyana', 2], ['Honduras', 258], ['Hungary', 4], ['India', 26], ['Indonesia', 16], ['Italy', 2], ['Ivory Coast', 64], ['Japan', 6], ['Jordan', 1], ['Kenya', 84], ['Laos', 3], ['Liberia', 20], ['Madagascar', 818], ['Malawi', 9], ['Malaysia', 79], ['Mauritius', 2], ['Mayotte', 2], ['Mexico', 35], ['Mozambique', 23], ['Myanmar', 1], ['Namibia', 1], ['New Caledonia', 41], ['Nigeria', 3838], ['Panama', 13], ['Papua New Guinea', 2], ['Peru', 38], ['Philippines', 2], ['Poland', 3], ['Portugal', 1], ['Republic of the Congo', 21], ['Romania', 24], ['Russia', 1], ['RĂ©union', 11], ['Saint Helena, Ascension and Tristan da Cunha', 4], ['Saint Pierre and Miquelon', 12], ['Samoa', 1], ['Sao Tome and Principe', 101], ['Senegal', 1], ['Sierra Leone', 25], ['Singapore', 3], ['Solomon Islands', 2], ['South Africa', 15], ['South Sudan', 2], ['Sudan', 1], ['Suriname', 11], ['Switzerland', 12], ['Tanzania', 847], ['Thailand', 54], ['Togo', 1], ['Trinidad and Tobago', 1], ['Turks and Caicos Islands', 3], ['Uganda', 14], ['Ukraine', 2], ['United States Pacific Island Wildlife Refuges', 3], ['United States of America', 69], ['Venezuela', 2], ['Vietnam', 11], ['West Bank', 37], ['Zambia', 14], ['Zimbabwe', 1], ['guineaconakry', 9] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=10606', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 88, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);