function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1728], ['Antigua and Barbuda', 1], ['Australia', 48], ['Belize', 2], ['Bonaire, Sint Eustatius and Saba', 1], ['Brazil', 152], ['Chile', 1], ['China', 537], ['El Salvador', 7], ['Guinea-Bissau', 4], ['Hong Kong', 3], ['Iceland', 17], ['India', 8], ['Indonesia', 78], ['Iran', 39], ['Japan', 10], ['Kuwait', 2], ['Madagascar', 3], ['Maldives', 2], ['Mauritania', 1], ['Mexico', 11], ['New Caledonia', 1], ['New Zealand', 3], ['Norway', 13], ['Oman', 29], ['Panama', 5], ['Philippines', 1], ['Puerto Rico', 1], ['Russia', 3], ['Saint Helena, Ascension and Tristan da Cunha', 38], ['Saint Pierre and Miquelon', 1], ['Saint Vincent and the Grenadines', 1], ['Sao Tome and Principe', 38], ['Singapore', 42], ['Sint Martin', 2], ['South Africa', 2], ['South Georgia and the South Sandwich Islands', 1], ['Sri Lanka', 1], ['Taiwan', 14], ['Tonga', 4], ['Trinidad and Tobago', 3], ['United States of America', 21], ['Vanuatu', 1], ['Venezuela', 2], ['hormuz island', 20], ['reunion island', 1], ['sao tome island', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=2904', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 47, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);