function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1274], ['Albania', 1], ['Angola', 2], ['Angola, South Sudan', 1], ['Argentina', 78], ['Bahamas', 12], ['Belize', 1], ['Benin', 2], ['Bolivia', 1043], ['Botswana', 1], ['Brazil', 5990], ['Bulgaria', 3], ['Cameroon', 34], ['Cameroon, Gabon, Democratic Republic of the Congo', 1], ['Canada', 30], ['China', 73], ['China, Central African Republic, Democratic Republic of the Cong', 1], ['Colombia', 33], ['Costa Rica', 395], ['Democratic Republic of the Congo', 3], ['Democratic Republic of the Congo, Tanzania, Malawi, Zambia, Moza', 1], ['Democratic Republic of the Congo, Uganda, Rwanda', 1], ['Ecuador', 1201], ['Egypt', 1], ['El Salvador', 8], ['French Guiana', 74], ['Gambia', 1], ['Germany', 2], ['Ghana', 2], ['Guam', 2], ['Guatemala', 22], ['Guinea-Bissau', 12], ['Guyana', 38], ['Heard Island and McDonald Islands', 3], ['Honduras', 8], ['Iceland', 1], ['India', 5], ['Italy', 10], ['Ivory Coast', 5], ['Japan', 54], ['Kenya', 64], ['Liberia', 1], ['Macedonia', 1], ['Madagascar', 1], ['Malawi', 5], ['Malta', 3], ['Mauritania', 2], ['Mexico', 404], ['Mozambique', 1], ['Namibia', 2], ['Netherlands', 2], ['New Caledonia', 2], ['Nicaragua', 7], ['Nigeria', 3], ['Oman', 1], ['Pakistan', 1], ['Palau', 1], ['Panama', 1961], ['Papua New Guinea', 41], ['Paraguay', 33], ['Peru', 2343], ['Philippines', 1], ['Portugal', 1], ['Russia', 67], ['Rwanda', 1], ['Saint Kitts and Nevis', 2], ['Saint Pierre and Miquelon', 6], ['Saint Vincent and the Grenadines', 33], ['Sao Tome and Principe', 1], ['Senegal', 11], ['Serbia', 2], ['Seychelles', 1], ['Sierra Leone', 2], ['Sierra Leone, Liberia, Ivory Coast, Ghana, Togo', 1], ['Solomon Islands', 9], ['Somalia', 1], ['South Africa', 5], ['South Korea', 1], ['Suriname', 29], ['Suriname, French Guiana', 12], ['Syria', 1], ['Taiwan', 41], ['Tanzania', 16], ['Trinidad and Tobago', 1], ['Turkey', 1], ['Uganda', 4], ['United Arab Emirates', 2], ['United States of America', 301], ['Vanuatu', 1], ['Venezuela', 38], ['Vietnam', 12], ['Virgin Islands', 1], ['Zambia', 2], ['Zimbabwe', 1], ['costa', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=15917', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 95, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);