function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 42072], ['Afghanistan', 27], ['Albania', 53], ['Algeria', 1259], ['American Samoa', 300], ['Angola', 27], ['Argentina', 56], ['Armenia', 1], ['Australia', 14], ['Austria', 304], ['Belize', 1], ['Bhutan', 5], ['Bolivia', 202], ['Bosnia and Herzegovina', 5], ['Brazil', 709], ['Brunei', 171], ['Cameroon', 142], ['Canada', 5265], ['Central African Republic', 29], ['Chile', 222], ['China', 3971], ['Colombia', 340], ['Costa Rica', 82], ['Croatia', 25], ['Czech Republic', 1], ['Democratic Republic of the Congo', 247], ['Dominican Republic', 2], ['Ecuador', 56], ['Equatorial Guinea', 802], ['Ethiopia', 21], ['Finland', 3], ['France', 119], ['Gabon', 29], ['Georgia', 315], ['Georgia, United States of America', 1], ['Germany', 39], ['Germany, Switzerland', 17], ['Ghana', 123], ['Ghana, Cameroon, Gabon', 19], ['Greece', 124], ['Guatemala', 4], ['Guinea-Bissau', 36], ['Guyana', 24], ['Heard Island and McDonald Islands', 149], ['Hong Kong', 30], ['Hungary', 86], ['Iceland', 78], ['India', 236], ['India, Pakistan', 1], ['Indonesia', 139], ['Iran', 3], ['Iraq', 6], ['Isle of Man', 0], ['Italy', 418], ['Ivory Coast', 18], ['Japan', 182], ['Jordan', 273], ['Kazakhstan', 432], ['Kenya', 6], ['Kosovo', 2], ['Kyrgyzstan', 25], ['Lebanon', 111], ['Lesotho', 1], ['Liberia', 32], ['Lithuania', 3], ['Macedonia', 311], ['Malawi', 3], ['Malaysia', 133], ['Mexico', 743], ['Mongolia', 893], ['Morocco', 910], ['Myanmar', 3], ['Namibia', 8], ['Nepal', 5], ['Netherlands', 315], ['New Zealand', 9], ['Nigeria', 13], ['North Korea', 10], ['Norway', 8], ['Pakistan', 1], ['Panama', 236], ['Paraguay', 11], ['Peru', 9], ['Philippines', 310], ['Romania', 9], ['Russia', 143], ['Russia, Japan', 1], ['Russia, North Korea', 1], ['Rwanda', 13], ['Saint Kitts and Nevis', 24], ['Saint Pierre and Miquelon', 3], ['Senegal', 93], ['Senegal, Guinea-Bissau', 2], ['Serbia', 41], ['Sierra Leone', 29], ['Sierra Leone, Ghana', 1], ['Slovakia', 31], ['Slovenia', 501], ['South Africa', 100], ['South Korea', 1051], ['South Sudan', 2], ['Spain', 17], ['Sri Lanka', 81], ['Sweden', 26], ['Switzerland', 1046], ['Taiwan', 1533], ['Tanzania', 43], ['Thailand', 1368], ['Togo', 28], ['Trinidad and Tobago', 43], ['Tunisia', 27], ['Turkey', 23205], ['Uganda', 31], ['Ukraine', 18], ['United Kingdom', 342], ['United States of America', 17843], ['Uruguay', 1], ['Uzbekistan', 41], ['Venezuela', 25], ['Vietnam', 653], ['Zimbabwe', 27], ['olivia', 1], ['people\'s republic of korea', 2], ['quebrada san andres', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=111873', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 124, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);