function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 2818], ['American Samoa', 348], ['Antarctica', 27], ['Antigua and Barbuda', 3], ['Argentina', 22], ['Aruba', 2], ['Australia', 57], ['Bahamas', 73], ['Barbados', 3], ['Bermuda', 67], ['Bouvet Island', 458], ['Brazil', 238], ['Cameroon', 2], ['Canada', 3], ['Cape Verde', 1], ['Chile', 6], ['China', 3], ['Colombia', 184], ['Costa Rica', 27], ['Cuba', 5], ['CuraƧao', 1], ['Ecuador', 2], ['Egypt', 11], ['El Salvador', 10], ['Falkland Islands', 10], ['France', 1], ['Germany', 1], ['Guadeloupe', 1], ['Guam', 2], ['Guinea-Bissau', 1], ['Haiti', 2], ['Hong Kong', 2], ['Iceland', 44], ['India', 1], ['Indonesia', 412], ['Indonesia, Palau', 1], ['Israel', 12], ['Italy', 1], ['Jamaica', 3], ['Japan', 49], ['Kenya', 8], ['Kiribati', 8], ['Madagascar', 11], ['Madagascar, Seychelles, Maldives', 10], ['Malaysia', 1], ['Maldives', 1], ['Mauritania', 2], ['Mexico', 82], ['Monaco', 2], ['New Caledonia', 5], ['New Zealand', 257], ['Northern Mariana Islands', 2], ['Norway', 39], ['Oman', 3], ['Panama', 27], ['Philippines', 1], ['Poland', 2], ['Portugal', 3], ['Puerto Rico', 1], ['Russia', 4], ['Saint Helena, Ascension and Tristan da Cunha', 15], ['Saint Lucia', 1], ['Saint Pierre and Miquelon', 4], ['Sao Tome and Principe', 6], ['Saudi Arabia', 6], ['Seychelles', 82], ['South Africa', 42], ['South Georgia and the South Sandwich Islands', 2], ['South Georgia and the South Sandwich Islands, Antarctica', 1], ['South Korea', 3], ['Spain', 7], ['Suriname', 3], ['Taiwan', 9], ['Tanzania', 4], ['Thailand', 2], ['Tokelau', 1], ['Trinidad and Tobago', 1], ['Turks and Caicos Islands', 1], ['United Kingdom', 4], ['United Kingdom, South Georgia and the South Sandwich Islands', 1], ['United States Pacific Island Wildlife Refuges', 10], ['United States Pacific Island Wildlife Refuges, Kiribati', 1], ['United States of America', 73], ['Uruguay', 1], ['Venezuela', 6], ['Virgin Islands', 19], ['Wake Island', 9], ['south georgia island', 20], ['st. helena island.', 4] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=5721', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 89, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);