function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 372], ['Angola', 5], ['Antigua and Barbuda', 3], ['Aruba', 9], ['Australia', 22], ['Barbados', 3], ['Belize', 10], ['Benin', 1], ['Bermuda', 36], ['Brazil', 284], ['British Virgin Islands', 4], ['Cambodia', 1], ['Cameroon', 1], ['Cape Verde', 6], ['Chile', 1], ['China', 7], ['Colombia', 11], ['Costa Rica', 12], ['Cuba', 12], ['CuraƧao', 4], ['Democratic Republic of the Congo', 1], ['Dominica', 2], ['Dominican Republic', 1], ['France', 5], ['Ghana', 22], ['Guadeloupe', 6], ['Guyana', 2], ['Haiti', 1], ['Honduras', 5], ['Hong Kong', 20], ['Iceland', 89], ['India', 10], ['Indonesia', 51], ['Iran', 93], ['Japan', 9], ['Kuwait', 18], ['Madagascar', 1], ['Malaysia', 124], ['Maldives', 1], ['Mexico', 42], ['Morocco', 3], ['Netherlands', 1], ['New Caledonia', 2], ['New Zealand', 1], ['Pakistan', 2], ['Panama', 86], ['Papua New Guinea', 5], ['Philippines', 26], ['Portugal', 2], ['Puerto Rico', 5], ['Saint Helena, Ascension and Tristan da Cunha', 1], ['Saint Kitts and Nevis', 3], ['Saint Lucia', 2], ['Saint Pierre and Miquelon', 2], ['Saint Vincent and the Grenadines', 21], ['Sao Tome and Principe', 8], ['Saudi Arabia', 4], ['Senegal', 1], ['Sierra Leone', 2], ['Singapore', 1059], ['Sint Martin', 8], ['Solomon Islands', 2], ['South Korea', 1], ['Spain', 6], ['Suriname', 1], ['Taiwan', 8], ['Thailand', 125], ['Trinidad and Tobago', 2], ['United Kingdom', 1], ['United States of America', 94], ['Vanuatu', 6], ['Venezuela', 25], ['Vietnam', 14], ['hormuz island', 2], ['isla san cristobal', 1], ['qeshm island', 4] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=2843', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 76, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);