function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 698], ['Angola', 5], ['Antigua and Barbuda', 4], ['Argentina', 1], ['Aruba', 15], ['Australia', 25], ['Bahamas', 2], ['Barbados', 8], ['Belize', 1313], ['Benin', 1], ['Bermuda', 54], ['Brazil', 405], ['British Virgin Islands', 5], ['Cambodia', 1], ['Cameroon', 1], ['Cape Verde', 7], ['Chile', 23], ['China', 7], ['Colombia', 29], ['Costa Rica', 15], ['Cuba', 15], ['Curaçao', 17], ['Democratic Republic of the Congo', 1], ['Djibouti', 1], ['Dominica', 2], ['Dominican Republic', 17], ['Egypt', 2], ['Equatorial Guinea', 1], ['Fiji', 4], ['France', 10], ['French Polynesia', 6], ['Gabon', 1], ['Ghana', 22], ['Guadeloupe', 11], ['Guinea-Bissau, Sao Tome and Principe', 2], ['Guyana', 4], ['Haiti', 2], ['Heard Island and McDonald Islands', 1], ['Honduras', 28], ['Hong Kong', 24], ['Iceland', 290], ['India', 10], ['Indonesia', 63], ['Iran', 112], ['Jamaica', 6], ['Japan', 66], ['Kuwait', 32], ['Madagascar', 78], ['Malaysia', 124], ['Maldives', 1], ['Mayotte', 2], ['Mexico', 130], ['Morocco', 3], ['Mozambique', 2], ['Netherlands', 1], ['New Caledonia', 13], ['New Zealand', 1], ['Nigeria', 2], ['Northern Mariana Islands', 3], ['Oman', 58], ['Pakistan', 2], ['Palau', 1], ['Panama', 220], ['Papua New Guinea', 16], ['Peru', 3], ['Philippines', 38], ['Portugal', 2], ['Puerto Rico', 8], ['Republic of the Congo', 7], ['Réunion', 2], ['Saint Helena, Ascension and Tristan da Cunha', 2], ['Saint Kitts and Nevis', 28], ['Saint Lucia', 2], ['Saint Pierre and Miquelon', 2], ['Saint Vincent and the Grenadines', 24], ['Sao Tome and Principe', 39], ['Saudi Arabia', 24], ['Senegal', 1], ['Sierra Leone', 2], ['Singapore', 1059], ['Sint Martin', 38], ['Solomon Islands', 2], ['South Korea', 1], ['Spain', 6], ['Suriname', 1], ['Taiwan', 9], ['Thailand', 125], ['Trinidad and Tobago', 18], ['Turks and Caicos Islands', 7], ['United Kingdom', 1], ['United States Virgin Islands', 4], ['United States of America', 148], ['Vanuatu', 6], ['Venezuela', 33], ['Vietnam', 23], ['Virgin Islands', 5], ['ascension island', 3], ['hormuz island', 2], ['isla san cristobal', 11], ['qeshm island', 33], ['sao tome island', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=5746', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 101, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);