function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 273], ['Angola', 16], ['Australia', 7], ['Bangladesh', 1], ['Belgium', 1], ['Bhutan', 1], ['Bolivia', 6], ['Brazil', 115], ['Burundi', 4], ['Cambodia', 6], ['Cameroon', 51], ['Central African Republic', 10], ['China', 63], ['Colombia', 13], ['Democratic Republic of the Congo', 19], ['Ecuador', 2], ['Equatorial Guinea', 6], ['Ethiopia', 2], ['France', 2], ['French Guiana', 1], ['Gabon', 82], ['Gambia', 1], ['Ghana', 5], ['Guinea-Bissau', 10], ['Honduras', 3], ['Iceland', 150], ['India', 72], ['Indonesia', 17], ['Isle of Man', 0], ['Ivory Coast', 32], ['Japan', 8], ['Japan, Taiwan', 1], ['Jordan', 0], ['Kenya', 2], ['Laos', 7], ['Liberia', 14], ['Madagascar', 1], ['Malawi', 2], ['Malaysia', 111], ['Martinique', 0], ['Mexico', 2], ['Mozambique', 4], ['Myanmar', 6], ['Nepal', 1], ['Nigeria', 13], ['Panama', 909], ['Papua New Guinea', 8], ['Peru', 39], ['Philippines', 6], ['Republic of the Congo', 4], ['Russia', 1], ['Rwanda', 21], ['Sao Tome and Principe', 4], ['Sierra Leone', 11], ['Singapore', 5], ['South Africa', 3], ['South Korea', 1], ['South Sudan', 3], ['Sri Lanka', 1], ['Sudan', 9], ['Taiwan', 91], ['Tanzania', 11], ['Thailand', 94], ['Togo', 2], ['Tonga', 1], ['Trinidad and Tobago', 6], ['Uganda', 4], ['United Kingdom', 0], ['United States Pacific Island Wildlife Refuges', 1], ['United States of America', 74], ['Venezuela', 14], ['Vietnam', 58], ['berlin', 6], ['congo kinshasha', 0], ['lao pdr', 2], ['paris', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=2534', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 76, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);