function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 12375], ['Afghanistan', 9], ['American Samoa', 4], ['Angola', 4], ['Anguilla', 2], ['Antarctica', 13], ['Argentina', 34], ['Australia', 485], ['Austria', 6], ['Azerbaijan', 1], ['Bangladesh', 1], ['Belgium', 9], ['Brazil', 47], ['Cameroon', 1], ['Canada', 7], ['Central African Republic', 6], ['Chile', 2], ['China', 473], ['Colombia', 473], ['Cuba', 353], ['Czech Republic', 407], ['Democratic Republic of the Congo', 6], ['Dominican Republic', 28], ['Ecuador', 4], ['El Salvador', 28], ['Estonia', 1], ['Ethiopia', 1], ['France', 2], ['French Guiana', 2], ['French Polynesia', 1], ['Gabon', 2], ['Georgia', 1], ['Germany', 61], ['Ghana', 12], ['Greenland', 1], ['Grenada', 5], ['Guadeloupe', 1], ['Guatemala', 1], ['Guinea-Bissau', 5], ['Heard Island and McDonald Islands', 2], ['Hungary', 1], ['Iceland', 4], ['India', 706], ['India, Vietnam', 2], ['Indonesia', 176], ['Iran', 214], ['Italy', 8], ['Jamaica', 1], ['Japan', 217], ['Madagascar', 1], ['Malaysia', 10], ['Mexico', 35], ['Moldova', 3], ['Mongolia', 1], ['Netherlands', 19], ['New Caledonia', 7], ['New Zealand', 1150], ['Norway', 2], ['Oman', 159], ['Pakistan', 9], ['Panama', 2], ['Papua New Guinea', 733], ['Paraguay', 2], ['Peru', 13], ['Philippines', 2], ['Poland', 6], ['Portugal', 2], ['Romania', 22], ['Russia', 191], ['Rwanda', 1], ['Saint Kitts and Nevis', 1], ['Saudi Arabia', 1], ['South Africa', 54], ['South Korea', 14], ['Spain', 81], ['Sweden', 1480], ['Switzerland', 17], ['Taiwan', 14], ['Tajikistan', 1], ['Thailand', 28], ['Tonga', 2], ['Trinidad and Tobago', 30], ['Ukraine', 177], ['United Kingdom', 36], ['United States of America', 134], ['Uruguay', 1], ['Venezuela', 1], ['Vietnam', 221], ['Yemen', 2], ['Zambia', 1], ['cuc phuong national park, Vietnam', 16] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=20887', 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);