function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1164], ['Afghanistan', 1], ['Algeria', 1], ['Angola', 13], ['Argentina', 851], ['Australia', 52], ['Austria', 7], ['Bahamas', 4], ['Belgium', 2], ['Benin', 1], ['Bolivia', 54], ['Botswana', 4], ['Brazil', 155], ['British Virgin Islands', 2], ['Burkina Faso', 1], ['Burundi', 14], ['Cambodia', 1], ['Cameroon', 10], ['Canada', 10], ['Cape Verde', 1], ['Central African Republic', 6], ['Chad', 1], ['Chile', 16], ['China', 154], ['Christmas Island', 1], ['Colombia', 62], ['Comoros', 3], ['Cook Islands', 1], ['Costa Rica', 17], ['Cuba', 19], ['CuraƧao', 1], ['Democratic Republic of the Congo', 10], ['Dominican Republic', 11], ['Ecuador', 20], ['Egypt', 1], ['Equatorial Guinea', 8], ['Eritrea', 4], ['Ethiopia', 10], ['France', 8], ['Gabon', 7], ['Georgia', 1], ['Germany', 22], ['Ghana', 10], ['Greece', 2], ['Guadeloupe', 1], ['Guatemala', 7], ['Guinea-Bissau', 5], ['Haiti', 11], ['Heard Island and McDonald Islands', 54], ['Hungary', 14246], ['India', 13], ['Indonesia', 51], ['Iran', 2], ['Ireland', 1], ['Italy', 3], ['Ivory Coast', 4], ['Jamaica', 10], ['Japan', 3], ['Kenya', 40], ['Lebanon', 3], ['Lesotho', 5], ['Liberia', 5], ['Madagascar', 30], ['Malawi', 10], ['Malaysia', 1], ['Marshall Islands', 3], ['Martinique', 2], ['Mauritania', 1], ['Mayotte', 3], ['Mexico', 550], ['Morocco', 1], ['Mozambique', 9], ['Myanmar', 2], ['Namibia', 5], ['Netherlands', 2], ['New Zealand', 13], ['Nigeria', 23], ['Norfolk Island', 2], ['Pakistan', 2], ['Panama', 5], ['Papua New Guinea', 8], ['Paraguay', 19], ['Peru', 559], ['Philippines', 5], ['Pitcairn', 1], ['Portugal', 4], ['Puerto Rico', 10], ['Romania', 1], ['Russia', 3], ['Rwanda', 2], ['Saint Lucia', 2], ['Saint Pierre and Miquelon', 1], ['Saint Vincent and the Grenadines', 2], ['Samoa', 3], ['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', 3], ['Trinidad and Tobago', 1], ['Tunisia', 1], ['Uganda', 14], ['United Kingdom', 33], ['United States Virgin Islands', 5], ['United States of America', 1697], ['Uruguay', 3], ['Venezuela', 493], ['Vietnam', 3], ['Yemen', 3], ['Zambia', 9], ['Zimbabwe', 20], ['pitcairn island', 1], ['u.s.a. georgia.', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=20884', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 128, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);