function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1210], ['Afghanistan', 2], ['Aland Islands', 1], ['American Samoa', 1], ['Angola', 39], ['Anguilla', 14], ['Armenia', 4], ['Australia', 7], ['Azerbaijan', 3], ['Bangladesh', 4], ['Barbados', 4], ['Bolivia', 1], ['Brazil', 4], ['British Virgin Islands', 23], ['Cambodia', 2], ['Cameroon', 9], ['Canada', 11], ['China', 805], ['China, Myanmar, Thailand', 1], ['Colombia', 7], ['Democratic Republic of the Congo', 7], ['Dominica', 1], ['Dominican Republic', 7], ['Ecuador', 1], ['Equatorial Guinea', 29], ['Eritrea', 1], ['Ethiopia', 3], ['Ghana', 1], ['Grenada', 3], ['Guadeloupe', 16], ['Guatemala', 1], ['Guinea-Bissau', 2], ['Haiti', 7], ['Heard Island and McDonald Islands', 3], ['Honduras', 5], ['Hong Kong', 2], ['Iceland', 33], ['India', 42], ['Indonesia', 53], ['Iran', 19], ['Jamaica', 23], ['Japan', 23], ['Kazakhstan', 17], ['Kenya', 3], ['Kyrgyzstan', 4], ['Madagascar', 1], ['Malaysia', 32], ['Marshall Islands', 1], ['Martinique', 8], ['Mexico', 3], ['Micronesia', 1], ['Montserrat', 3], ['Mozambique', 5], ['Namibia', 15], ['New Caledonia', 2], ['New Zealand', 15], ['Nicaragua', 1], ['Pakistan', 11], ['Papua New Guinea', 96], ['Paraguay', 1], ['Peru', 20], ['Philippines', 3], ['Puerto Rico', 40], ['Puerto Rico, United States of America', 1], ['Republic of the Congo', 2], ['Russia', 4], ['Saint Lucia', 2], ['Saint Pierre and Miquelon', 1], ['Saint Vincent and the Grenadines', 10], ['Saudi Arabia', 2], ['Singapore', 73], ['Sint Martin', 3], ['Solomon Islands', 8], ['South Africa', 27], ['Spain', 1], ['Sri Lanka', 2], ['Thailand', 4], ['Togo', 271], ['Trinidad and Tobago', 13], ['Turkey', 2], ['Turks and Caicos Islands', 14], ['United States Virgin Islands', 17], ['United States of America', 1], ['Uzbekistan', 5], ['Venezuela', 31], ['Vietnam', 1323], ['Virgin Islands', 3], ['Zimbabwe', 1], ['indonesian new guinea', 0], ['saba island', 4], ['tobago island', 4], ['turk island', 3] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=4548', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 92, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);