function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1289], ['Afghanistan', 1], ['Albania, Bulgaria, Czech Republic, Germany, France, Hungary, Ita', 196], ['Algeria', 17], ['Angola', 13], ['Argentina', 874], ['Australia', 52], ['Austria', 7], ['Bahamas', 4], ['Belgium', 2], ['Benin', 1], ['Bolivia', 57], ['Botswana', 4], ['Brazil', 317], ['British Virgin Islands', 2], ['Burkina Faso', 1], ['Burundi', 14], ['Cambodia', 2], ['Cameroon', 10], ['Canada', 10], ['Cape Verde', 1], ['Central African Republic', 6], ['Chad', 1], ['Chile', 16], ['China', 165], ['Christmas Island', 1], ['Colombia', 62], ['Comoros', 3], ['Cook Islands', 1], ['Costa Rica', 17], ['Cuba', 21], ['CuraƧao', 1], ['Democratic Republic of the Congo', 10], ['Dominican Republic', 11], ['Ecuador', 22], ['Egypt', 7], ['Equatorial Guinea', 8], ['Eritrea', 4], ['Ethiopia', 10], ['France', 8], ['Gabon', 7], ['Georgia', 1], ['Germany', 22], ['Ghana', 10], ['Greece', 21], ['Guadeloupe', 1], ['Guam', 0], ['Guatemala', 8], ['Guinea-Bissau', 5], ['Guyana', 1], ['Haiti', 11], ['Heard Island and McDonald Islands', 54], ['Hungary', 14218], ['India', 15], ['Indonesia', 55], ['Iran', 3], ['Ireland', 1], ['Israel', 4], ['Italy', 6], ['Ivory Coast', 4], ['Jamaica', 10], ['Japan', 6], ['Jordan', 42], ['Kazakhstan', 9], ['Kenya', 47], ['Laos', 4], ['Lebanon', 3], ['Lesotho', 5], ['Liberia', 5], ['Madagascar', 43], ['Malawi', 10], ['Malaysia', 309], ['Marshall Islands', 3], ['Martinique', 2], ['Mauritania', 1], ['Mayotte', 3], ['Mexico', 560], ['Mongolia', 21], ['Morocco', 50], ['Mozambique', 9], ['Myanmar', 10], ['Namibia', 5], ['Netherlands', 2], ['New Zealand', 13], ['Nigeria', 23], ['Norfolk Island', 2], ['Oman', 2], ['Pakistan', 2], ['Panama', 5], ['Papua New Guinea', 8], ['Paraguay', 61], ['Peru', 565], ['Philippines', 5], ['Pitcairn', 1], ['Portugal', 4], ['Puerto Rico', 10], ['Romania', 1], ['Russia', 4], ['Rwanda', 2], ['Saint Barthelemy', 1], ['Saint Lucia', 2], ['Saint Pierre and Miquelon', 1], ['Saint Vincent and the Grenadines', 2], ['Samoa', 3], ['Sao Tome and Principe', 2], ['Saudi Arabia', 2], ['Senegal', 1], ['Serbia', 1], ['Seychelles', 1], ['Sierra Leone', 2], ['Solomon Islands', 1], ['Somalia', 4], ['South Africa', 42], ['South Sudan', 6], ['Spain', 23], ['Sudan', 2], ['Swaziland', 1], ['Sweden', 6], ['Switzerland', 1], ['Taiwan', 3], ['Tanzania', 27], ['Thailand', 24], ['Togo', 1], ['Tokelau', 2], ['Tonga', 3], ['Trinidad and Tobago', 1], ['Tunisia', 8], ['Uganda', 14], ['United Arab Emirates', 11], ['United Kingdom', 33], ['United States Virgin Islands', 5], ['United States of America', 1698], ['Uruguay', 3], ['Uzbekistan', 2], ['Venezuela', 494], ['Vietnam', 5], ['Yemen', 3], ['Zambia', 9], ['Zimbabwe', 20], ['pitcairn island', 1], ['u.s.a. georgia.', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=22034', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 141, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);