function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 26630], ['Algeria', 3], ['American Samoa', 4], ['Angola', 132], ['Antarctica', 28], ['Argentina', 30], ['Australia', 65], ['Austria', 23], ['Barbados', 3], ['Belgium', 7], ['Bermuda', 44], ['Bonaire, Sint Eustatius and Saba', 1], ['Botswana', 2], ['Brazil', 1132], ['Bulgaria', 107], ['Canada', 303], ['Chile', 72], ['China', 351], ['Costa Rica', 4], ['Croatia', 3], ['Cuba', 141], ['Czech Republic', 3], ['Democratic Republic of the Congo', 63], ['Denmark', 3], ['Dominican Republic', 1], ['Ecuador', 260], ['Equatorial Guinea', 22], ['Ethiopia', 283], ['Falkland Islands', 1], ['Fiji', 65], ['Finland', 6], ['France', 3], ['Gabon', 3], ['Georgia', 9], ['Germany', 760], ['Greece', 9], ['Grenada', 2], ['Guadeloupe', 6], ['Guatemala', 1], ['Guinea-Bissau', 29], ['Hungary', 238], ['Iceland', 65], ['India', 152], ['Indonesia', 134], ['Indonesia, Brazil', 4], ['Iran', 93], ['Ireland', 0], ['Italy', 27], ['Japan', 44], ['Kenya', 73], ['Kyrgyzstan', 6], ['Macedonia', 1], ['Madagascar', 2236], ['Malawi', 9], ['Malaysia', 5], ['Maldives', 2], ['Mauritius', 5], ['Mexico', 243], ['Micronesia', 3], ['Mongolia', 1031], ['Morocco', 1], ['Mozambique', 14], ['Nepal', 6], ['Netherlands', 4], ['New Caledonia', 1514], ['New Zealand', 39], ['Norfolk Island', 534], ['Norway', 35], ['Pakistan', 2], ['Palau', 1], ['Panama', 1], ['Papua New Guinea', 8], ['Peru', 100], ['Philippines', 198], ['Poland', 153], ['Portugal', 4], ['Romania', 14], ['Russia', 332], ['Saint Lucia', 5], ['Slovakia', 4], ['Slovenia', 2], ['South Africa', 112], ['South Georgia and the South Sandwich Islands', 2], ['South Korea', 53], ['Spain', 9], ['Svalbard and Jan Mayen', 2], ['Sweden', 82], ['Switzerland', 8], ['Taiwan', 5], ['Tanzania', 99], ['Thailand', 26], ['Trinidad and Tobago', 3], ['Tunisia', 3], ['Turkey', 219], ['Turks and Caicos Islands', 2], ['Uganda', 8], ['Ukraine', 75], ['United Kingdom', 61], ['United States of America', 669], ['Uzbekistan', 26], ['Venezuela', 2], ['Vietnam', 128], ['Vietnam, Tanzania', 1], ['Wake Island', 1], ['Yemen', 10], ['Zimbabwe', 6], ['soviet union', 6] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=39574', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 107, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);