function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 4482], ['Afghanistan', 1], ['American Samoa', 59], ['Argentina', 1301], ['Armenia', 27], ['Australia', 6], ['Austria', 1], ['Bolivia', 122], ['Brazil', 10322], ['Cameroon', 1], ['Canada', 126], ['Chile', 3], ['China', 943], ['Colombia', 912], ['Comoros', 280], ['Costa Rica', 501], ['Cuba', 175], ['Czech Republic', 27], ['Democratic Republic of the Congo', 2], ['Dominican Republic', 4], ['Ecuador', 63], ['Ethiopia', 885], ['Finland', 18], ['France', 2], ['French Guiana', 61], ['Gambia', 5], ['Georgia', 62], ['Germany', 1], ['Guatemala', 53], ['Guinea-Bissau', 47], ['Guyana', 5], ['Honduras', 8], ['Hong Kong', 7], ['Hungary', 2], ['India', 4370], ['Indonesia', 1848], ['Iran', 34], ['Israel', 60], ['Italy', 5], ['Ivory Coast', 243], ['Japan', 41], ['Jordan', 1], ['Kyrgyzstan', 2], ['Malawi', 2], ['Malaysia', 363], ['Mayotte', 469], ['Mexico', 108], ['Mongolia', 11], ['Morocco', 4], ['Nepal', 53], ['Netherlands', 2], ['New Caledonia', 77], ['Nicaragua', 11], ['Niger', 62], ['Panama', 224], ['Papua New Guinea', 59], ['Paraguay', 4], ['Peru', 752], ['Philippines', 150], ['Poland', 2], ['Romania', 1], ['Russia', 673], ['Saint Helena, Ascension and Tristan da Cunha', 59], ['Saint Pierre and Miquelon', 4], ['Saint Vincent and the Grenadines', 2], ['Saudi Arabia', 5], ['Senegal', 1], ['Serbia', 204], ['South Africa', 97], ['Spain', 1], ['Sri Lanka', 75], ['Suriname', 13], ['Switzerland', 1685], ['Taiwan', 22], ['Tajikistan', 37], ['Tanzania', 121], ['Thailand', 4947], ['Trinidad and Tobago', 3], ['Tunisia', 1], ['Turkey', 71], ['Uganda', 61], ['Ukraine', 375], ['United Kingdom', 305], ['United States of America', 38], ['Uruguay', 204], ['Venezuela', 15908], ['Vietnam', 6], ['Yemen', 15], ['Zambia', 88], ['Zimbabwe', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=54494', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 90, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);