function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 77], ['Afghanistan', 1], ['Algeria', 1], ['Angola', 13], ['Argentina', 34], ['Australia', 37], ['Austria', 6], ['Bahamas', 4], ['Belgium', 2], ['Benin', 1], ['Bolivia', 50], ['Botswana', 4], ['Brazil', 48], ['British Virgin Islands', 2], ['Burkina Faso', 1], ['Burundi', 14], ['Cambodia', 1], ['Cameroon', 10], ['Cape Verde', 1], ['Central African Republic', 6], ['Chad', 1], ['Chile', 10], ['China', 4], ['Colombia', 33], ['Comoros', 3], ['Cook Islands', 1], ['Costa Rica', 10], ['Cuba', 19], ['CuraƧao', 1], ['Democratic Republic of the Congo', 10], ['Dominican Republic', 10], ['Ecuador', 15], ['Egypt', 1], ['Equatorial Guinea', 8], ['Eritrea', 4], ['Ethiopia', 10], ['France', 7], ['Gabon', 7], ['Germany', 21], ['Ghana', 10], ['Greece', 2], ['Guadeloupe', 1], ['Guatemala', 4], ['Guinea-Bissau', 3], ['Haiti', 11], ['India', 11], ['Indonesia', 30], ['Ireland', 1], ['Italy', 2], ['Ivory Coast', 4], ['Jamaica', 10], ['Japan', 3], ['Kenya', 36], ['Lesotho', 5], ['Liberia', 5], ['Madagascar', 30], ['Malawi', 10], ['Malaysia', 1], ['Marshall Islands', 3], ['Martinique', 2], ['Mauritania', 1], ['Mayotte', 3], ['Mexico', 505], ['Morocco', 1], ['Mozambique', 9], ['Myanmar', 2], ['Namibia', 5], ['Netherlands', 2], ['New Zealand', 13], ['Nigeria', 23], ['Norfolk Island', 2], ['Panama', 4], ['Papua New Guinea', 1], ['Paraguay', 10], ['Peru', 541], ['Philippines', 4], ['Pitcairn', 1], ['Portugal', 4], ['Puerto Rico', 10], ['Romania', 1], ['Rwanda', 2], ['Saint Pierre and Miquelon', 1], ['Saint Vincent and the Grenadines', 2], ['Samoa', 2], ['Sao Tome and Principe', 2], ['Senegal', 1], ['Serbia', 1], ['Seychelles', 1], ['Sierra Leone', 2], ['Solomon Islands', 1], ['Somalia', 4], ['South Africa', 40], ['South Sudan', 6], ['Spain', 3], ['Sudan', 2], ['Swaziland', 1], ['Sweden', 6], ['Switzerland', 1], ['Taiwan', 3], ['Tanzania', 27], ['Thailand', 2], ['Togo', 1], ['Tokelau', 2], ['Tonga', 2], ['Trinidad and Tobago', 1], ['Tunisia', 1], ['Uganda', 14], ['United Kingdom', 33], ['United States Virgin Islands', 5], ['United States of America', 960], ['Uruguay', 3], ['Venezuela', 492], ['Vietnam', 3], ['Yemen', 3], ['Zambia', 9], ['Zimbabwe', 20], ['pitcairn island', 1], ['u.s.a. georgia.', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=3475', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 118, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);