function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1314], ['Algeria', 3], ['Angola', 1], ['Australia', 30], ['Bahamas', 1], ['Belize', 108], ['Benin', 0], ['Bermuda', 2], ['Brazil', 14], ['Cape Verde', 5], ['China', 5], ['Christmas Island', 4], ['Clipperton Island', 1], ['Colombia', 13], ['Cook Islands', 3], ['Costa Rica', 8], ['Croatia', 9], ['Cuba', 1], ['CuraƧao', 4], ['Denmark', 2], ['Djibouti', 6], ['Ecuador', 13], ['Egypt', 14], ['Fiji', 76], ['France', 153], ['French Polynesia', 35], ['Guadeloupe', 1], ['Guam', 1], ['Guinea-Bissau', 16], ['Haiti', 7], ['Hong Kong', 43], ['Iceland', 11], ['India', 7], ['Indonesia', 41], ['Ireland', 2], ['Israel', 6], ['Italy', 16], ['Jamaica', 11], ['Japan', 31], ['Kiribati', 3], ['Kuwait', 1], ['Madagascar', 9], ['Maldives', 1], ['Marshall Islands', 15], ['Mauritius', 2], ['Mexico', 21], ['Micronesia', 0], ['Monaco', 1], ['Mozambique', 2], ['Netherlands', 2], ['New Caledonia', 33], ['Northern Mariana Islands', 17], ['Norway', 4], ['Oman', 9], ['Palau', 4], ['Panama', 2], ['Papua New Guinea', 12], ['Peru', 1], ['Philippines', 15], ['Portugal', 1], ['Puerto Rico', 14], ['Republic of the Congo', 50], ['Russia', 70], ['Saint Lucia', 5], ['Saint Pierre and Miquelon', 42], ['Samoa', 10], ['Sao Tome and Principe', 0], ['Saudi Arabia', 14], ['Seychelles', 8], ['Sint Martin', 1], ['Solomon Islands', 16], ['South Africa', 59], ['Spain', 37898], ['Sri Lanka', 3], ['Sweden', 195], ['Tanzania', 4], ['Thailand', 2], ['Timor-Leste', 2], ['Tonga', 1], ['Trinidad and Tobago', 1], ['Turkey', 697], ['United Kingdom', 1], ['United States of America', 15], ['Vanuatu', 1], ['Venezuela', 2], ['Vietnam', 1], ['Virgin Islands', 6], ['Wallis and Futuna', 1], ['Western Sahara', 1], ['Yemen', 6], ['hormuz island', 0], ['isla tortuga', 5], ['la reunion island', 1], ['reunion island', 1], ['saint helena island', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=41308', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 95, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);