function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 24777], ['Afghanistan', 27629], ['American Samoa', 7], ['Angola', 15], ['Argentina', 115], ['Australia', 15], ['Azerbaijan', 1], ['Bahamas', 1], ['Bangladesh', 23], ['Belarus', 1], ['Bolivia', 35], ['Brazil', 1781], ['Burkina Faso', 2068], ['Cambodia', 17], ['Cameroon', 50], ['Canada', 2], ['Chad', 1], ['Chile', 4], ['China', 1177], ['Colombia', 4705], ['Costa Rica', 6], ['Cuba', 0], ['Democratic Republic of the Congo', 21], ['Dominican Republic', 1], ['Ecuador', 966], ['Equatorial Guinea', 213], ['Ethiopia', 31], ['France', 1], ['French Guiana', 711], ['Gabon', 7], ['Ghana', 21], ['Greenland', 4], ['Grenada', 1], ['Guinea-Bissau', 27], ['Guyana', 47], ['Hungary', 0], ['Iceland', 5], ['India', 176], ['Indonesia', 102], ['Iran', 15], ['Israel', 28], ['Italy', 700], ['Ivory Coast', 11], ['Japan', 79], ['Kenya', 19], ['Laos', 32], ['Liberia', 53], ['Madagascar', 315], ['Malaysia', 161], ['Mauritius', 5], ['Mexico', 82], ['Montserrat', 5], ['Mozambique', 1], ['Myanmar', 9], ['Namibia', 2], ['Nepal', 5], ['Netherlands', 31], ['Niger', 2], ['Nigeria', 3], ['Pakistan', 154], ['Panama', 30], ['Papua New Guinea', 1239], ['Paraguay', 95], ['Peru', 5337], ['Philippines', 2], ['Portugal', 5], ['Puerto Rico', 2], ['Rwanda', 11], ['Saint Helena, Ascension and Tristan da Cunha', 2], ['Saint Pierre and Miquelon', 101683], ['Senegal', 6], ['Sierra Leone', 3], ['Singapore', 424], ['South Africa', 32], ['Spain', 12], ['Sri Lanka', 13], ['Suriname', 12], ['Sweden', 1], ['Syria', 1], ['Taiwan', 9], ['Tanzania', 10], ['Thailand', 104], ['Timor-Leste', 1], ['Uganda', 7], ['United Kingdom', 2], ['United States of America', 16], ['Venezuela', 61], ['Vietnam', 513], ['Zambia', 4], ['borneo', 3], ['guayana', 9] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=176125', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 91, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);