function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 69579], ['American Samoa', 17], ['Angola', 101], ['Ashmore and Cartier Islands', 2], ['Australia', 928], ['Bahamas', 887], ['Barbados', 2406], ['Bonaire, Sint Eustatius and Saba', 270], ['Brazil', 1184], ['Cameroon', 710], ['Cape Verde', 5], ['Chile', 1659], ['China', 1337], ['Colombia', 855], ['Cook Islands', 1], ['Costa Rica', 3], ['Cuba', 1948], ['Democratic Republic of the Congo', 115], ['Denmark', 1], ['Djibouti', 1], ['Dominica', 1221], ['Equatorial Guinea', 3], ['Fiji', 2682], ['French Polynesia', 1081], ['Gabon', 72], ['Georgia', 576], ['Grenada', 456], ['Guadeloupe', 2], ['Guinea-Bissau', 417], ['Haiti', 7], ['Hong Kong', 50], ['Iceland', 241], ['India', 1557], ['Indonesia', 2698], ['Iran', 1], ['Ivory Coast', 1], ['Japan', 840], ['Kenya', 1], ['Kiribati', 1008], ['Madagascar', 447], ['Maldives', 15], ['Marshall Islands', 2], ['Martinique', 2186], ['Mauritania', 23], ['Mauritius', 533], ['Mayotte', 2], ['Mexico', 177], ['Morocco', 2], ['Mozambique', 67], ['Namibia', 510], ['New Caledonia', 15079], ['New Zealand', 4121], ['Norfolk Island', 591], ['Northern Mariana Islands', 70], ['Norway', 3], ['Oman', 107], ['Pakistan', 4], ['Palau', 11], ['Panama', 4330], ['Papua New Guinea', 37], ['Peru', 4], ['Philippines', 2044], ['Philippines, Indonesia', 2], ['Puerto Rico', 411], ['RĂ©union', 1], ['Saint Kitts and Nevis', 2647], ['Saint Vincent and the Grenadines', 1], ['Saudi Arabia', 1], ['Seychelles', 1101], ['Singapore', 19], ['Solomon Islands', 838], ['Somalia', 2], ['South Africa', 60], ['Spain', 2], ['Sri Lanka', 13], ['Svalbard and Jan Mayen', 1], ['Sweden', 93], ['Switzerland', 45], ['Taiwan', 835], ['Taiwan, Philippines', 1], ['Tanzania', 464], ['Thailand', 1], ['Tonga', 9], ['United Kingdom', 8], ['United States Pacific Island Wildlife Refuges', 1], ['United States of America', 2], ['Vanuatu', 53], ['Wake Island', 17], ['Wallis and Futuna', 5], ['futuna island', 8], ['guam island', 9], ['reunion island', 422], ['wallis & futuna', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=132362', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 93, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);