function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 12402], ['Afghanistan', 712], ['Algeria', 1], ['American Samoa', 17], ['Angola', 1], ['Antarctica', 429], ['Antigua and Barbuda', 1], ['Argentina', 40], ['Australia', 1164], ['Australia, Seychelles', 1], ['Azerbaijan', 4], ['Bahamas', 6], ['Belarus', 2], ['Belize', 11], ['Bermuda', 48], ['Bosnia and Herzegovina', 49], ['Botswana', 1], ['Brazil', 1564], ['Canada', 580], ['Cape Verde', 2], ['Chile', 180], ['China', 574], ['Colombia', 1538], ['Costa Rica', 17], ['Croatia', 216], ['Cuba', 14], ['Cyprus', 1], ['Denmark', 3], ['Ecuador', 114], ['El Salvador', 307], ['Falkland Islands', 5], ['Fiji', 385], ['France', 162], ['French Polynesia', 5], ['Georgia', 1], ['Gibraltar', 1], ['Greece', 1], ['Greenland', 90], ['Guatemala', 2], ['Guinea-Bissau', 2], ['Guyana', 10], ['Heard Island and McDonald Islands', 1], ['Hong Kong', 60], ['Iceland', 548], ['India', 90], ['Indonesia', 1539], ['Iran', 19], ['Ireland', 76], ['Italy', 5], ['Ivory Coast', 1], ['Jamaica', 10], ['Japan', 725], ['Kazakhstan', 33], ['Kiribati', 3], ['Kuwait', 91], ['Kyrgyzstan', 3], ['Lebanon', 120], ['Libya', 2], ['Macedonia', 5], ['Madagascar', 21], ['Malaysia', 1102], ['Mauritania', 2], ['Mauritius', 20], ['Mayotte', 2], ['Mexico', 395], ['Morocco', 19], ['Mozambique', 95], ['Myanmar', 2], ['Namibia', 2], ['New Caledonia', 1967], ['New Zealand', 875], ['Nigeria', 45], ['Norfolk Island', 2], ['Northern Mariana Islands', 2], ['Norway', 1], ['Pakistan', 9], ['Panama', 99], ['Papua New Guinea', 6], ['Peru', 978], ['Philippines', 636], ['Portugal', 44], ['Puerto Rico', 4], ['Russia', 30], ['Saint Helena, Ascension and Tristan da Cunha', 3], ['Sao Tome and Principe', 93], ['Saudi Arabia', 336], ['Serbia', 107], ['Seychelles', 151], ['Singapore', 308], ['Slovenia', 34], ['Solomon Islands', 3], ['Somalia', 76], ['South Africa', 929], ['South Georgia and the South Sandwich Islands', 9], ['South Korea', 62], ['Spain', 306], ['Sweden', 1], ['Taiwan', 8], ['Tanzania', 27], ['Thailand', 47], ['Trinidad and Tobago', 1], ['Tunisia', 2], ['Turkey', 1], ['Turkmenistan', 9], ['United Arab Emirates', 5], ['United Kingdom', 28], ['United States of America', 181], ['Uzbekistan', 13], ['Vanuatu', 1], ['Venezuela', 191], ['Vietnam', 15], ['Virgin Islands', 2], ['Yemen', 364], ['guam island', 1], ['mahe island', 723], ['mayotte island', 185] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=34574', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 116, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);