function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 888182], ['Afghanistan', 110], ['Algeria', 408], ['American Samoa', 158], ['Andorra', 30], ['Angola', 5], ['Antigua and Barbuda', 1], ['Argentina', 2508], ['Armenia', 10], ['Australia', 2], ['Austria', 75], ['Azerbaijan', 6], ['Bangladesh', 1], ['Belarus', 1], ['Belgium', 1], ['Belize', 96], ['Bhutan', 15], ['Bolivia', 239], ['Brazil', 6936], ['Brunei', 1], ['Bulgaria', 51], ['Cameroon', 8], ['Canada', 588527337], ['Cape Verde', 1], ['Chad', 7], ['Chile', 28], ['China', 326], ['Colombia', 3218], ['Colombia, Panama', 1], ['Costa Rica', 2646], ['Cuba', 18], ['Cyprus', 41], ['Czech Republic', 1], ['Democratic Republic of the Congo', 9], ['Dominican Republic', 22], ['Ecuador', 151], ['Egypt', 13], ['El Salvador', 17], ['Ethiopia', 8], ['Finland', 7], ['France', 16], ['French Guiana', 14], ['Georgia', 8], ['Germany', 15], ['Ghana', 1], ['Greece', 66], ['Grenada', 23], ['Guadeloupe', 36], ['Guam', 1], ['Guatemala', 104], ['Guinea-Bissau', 21], ['Guyana', 6], ['Haiti', 9], ['Honduras', 38], ['Hungary', 5], ['Iceland', 51], ['India', 61], ['Indonesia', 100], ['Iran', 261], ['Ireland', 1], ['Israel', 391], ['Italy', 25], ['Jamaica', 4], ['Japan', 7], ['Jordan', 8], ['Kazakhstan', 375], ['Kenya', 18], ['Kyrgyzstan', 82], ['Lebanon', 1807], ['Liberia', 10], ['Luxembourg', 6], ['Madagascar', 4], ['Malawi', 1], ['Malaysia', 29], ['Malta', 3], ['Mexico', 3863], ['Mongolia', 264], ['Morocco', 132], ['Mozambique', 1], ['Myanmar', 3], ['Nepal', 8], ['Netherlands', 1], ['New Zealand', 1], ['Nicaragua', 94], ['Niger', 1], ['Norway', 47], ['Norway, Sweden', 163], ['Oman', 6], ['Pakistan', 10], ['Palestine', 5], ['Panama', 814], ['Papua New Guinea', 9], ['Paraguay', 37], ['Peru', 1013], ['Philippines', 30], ['Portugal', 17], ['Puerto Rico', 61], ['Romania', 2], ['Russia', 715], ['Saint Barthelemy', 1], ['Saint Helena, Ascension and Tristan da Cunha', 1], ['Saint Kitts and Nevis', 1], ['Saint Pierre and Miquelon', 8992], ['Saint Vincent and the Grenadines', 5], ['Sao Tome and Principe', 126], ['Saudi Arabia', 2], ['Serbia', 1], ['Singapore', 2], ['Slovakia', 1], ['Slovenia', 1], ['Somalia', 3], ['South Africa', 102], ['South Korea', 4], ['Spain', 960], ['Sri Lanka', 3], ['Suriname', 4], ['Sweden', 2], ['Switzerland', 4], ['Syria', 20], ['Taiwan', 220], ['Tajikistan', 72], ['Tanzania', 4], ['Thailand', 127], ['Trinidad and Tobago', 38], ['Tunisia', 8], ['Turkey', 517], ['Turkmenistan', 27], ['Turks and Caicos Islands', 27], ['Uganda', 1], ['Ukraine', 6], ['United Arab Emirates', 17], ['United Kingdom', 2], ['United States Virgin Islands', 1], ['United States of America', 2077], ['Uruguay', 53], ['Uzbekistan', 84], ['Vanuatu', 2], ['Venezuela', 86], ['Venezuela, Peru', 3], ['Vietnam', 62], ['Yemen', 3], ['Zambia', 1], ['Zimbabwe', 1], ['las lomitas terr. de formosa.', 1], ['parag', 1], ['saint vincent island', 1], ['ternate island', 5] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=589457281', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 147, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);