function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 11167], ['Afghanistan', 6], ['Albania', 2], ['Algeria', 34], ['American Samoa', 16], ['Angola', 17], ['Argentina', 24], ['Armenia', 0], ['Aruba', 1], ['Australia', 264], ['Austria', 4], ['Azerbaijan', 0], ['Bahamas', 5], ['Bangladesh', 6], ['Barbados', 1], ['Belgium', 3], ['Belize', 2], ['Bermuda', 1], ['Bhutan', 26], ['Bolivia', 24], ['Bosnia and Herzegovina', 2], ['Botswana', 3], ['Brazil', 1700], ['Bulgaria', 2], ['Burundi', 1], ['Cambodia', 3], ['Cameroon', 41], ['Central African Republic', 3], ['Chad', 11], ['Chile', 14], ['China', 1322], ['Colombia', 1119], ['Comoros', 33], ['Costa Rica', 496], ['Croatia', 3], ['Cuba', 7], ['Curaçao', 2], ['Cyprus', 26], ['Democratic Republic of the Congo', 11], ['Denmark', 1], ['Dominica', 1], ['Dominican Republic', 6], ['Ecuador', 104], ['Egypt', 1], ['El Salvador', 1], ['Equatorial Guinea', 29], ['Eritrea', 1], ['Estonia', 1], ['Ethiopia', 2], ['Fiji', 10], ['France', 34], ['French Guiana', 5], ['French Polynesia', 4], ['Gabon', 31], ['Georgia', 4], ['Germany', 2], ['Gibraltar', 3], ['Greece', 182], ['Greece, Iceland', 1], ['Grenada', 3], ['Guadeloupe', 7], ['Guatemala', 4], ['Guinea-Bissau', 2], ['Guyana', 8], ['Haiti', 5], ['Honduras', 4], ['Hong Kong', 6], ['Hungary', 71], ['Iceland', 2], ['India', 218], ['India, Bangladesh, Myanmar, Thailand', 1], ['India, Myanmar', 2], ['India, Myanmar, Thailand', 1], ['Indonesia', 58], ['Iran', 13], ['Israel', 9], ['Italy', 59], ['Jamaica', 9], ['Japan', 168], ['Jordan', 3], ['Kazakhstan', 6], ['Kenya', 149], ['Laos', 40], ['Lebanon', 37], ['Lesotho', 8], ['Liberia', 1], ['Macedonia', 1], ['Madagascar', 734], ['Malawi', 23], ['Malaysia', 445], ['Maldives', 1], ['Martinique', 2], ['Mauritania', 1], ['Mauritius', 42], ['Mayotte', 5], ['Mexico', 191], ['Mongolia', 7], ['Morocco', 54], ['Mozambique', 22], ['Myanmar', 1072], ['Myanmar, Thailand', 3], ['Namibia', 42], ['Nepal', 63], ['Netherlands', 29], ['New Caledonia', 2003], ['New Zealand', 16], ['Nicaragua', 2], ['Nigeria', 5], ['North Korea', 1], ['Norway', 1], ['Oman', 1], ['Pakistan', 4], ['Palau', 1], ['Palestine', 1], ['Panama', 59], ['Papua New Guinea', 27], ['Paraguay', 3], ['Peru', 194], ['Philippines', 26], ['Portugal', 70], ['Puerto Rico', 2], ['Republic of the Congo', 1], ['Romania', 8], ['Russia', 13], ['Rwanda', 6], ['Réunion', 90], ['Saint Pierre and Miquelon', 1], ['Samoa', 24], ['Sao Tome and Principe', 13], ['Serbia', 1], ['Seychelles', 11], ['Singapore', 9], ['Slovakia', 2], ['Solomon Islands', 1], ['South Africa', 2225], ['South Korea', 54], ['Spain', 13], ['Sri Lanka', 40], ['Suriname', 1], ['Swaziland', 11], ['Sweden', 2], ['Switzerland', 1], ['Syria', 1], ['Taiwan', 36], ['Tanzania', 28], ['Thailand', 940], ['Togo', 1], ['Trinidad and Tobago', 3], ['Tunisia', 5], ['Turkey', 191], ['Uganda', 6], ['Ukraine', 20], ['United Arab Emirates', 1], ['United Kingdom', 5], ['United States Virgin Islands', 2], ['United States of America', 258], ['Uruguay', 4], ['Uzbekistan', 6], ['Vanuatu', 3], ['Venezuela', 68], ['Vietnam', 494], ['Virgin Islands', 1], ['Yemen', 11], ['Zambia', 6], ['Zambia, Malawi, Uganda, Kenya', 1], ['Zimbabwe', 31], ['arabia', 1], ['ascension island', 1], ['c hina', 1], ['ile maurice', 1], ['saint helena island', 6], ['south', 1], ['tonga island', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=27534', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 173, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);