function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 29621], ['Afghanistan', 15], ['Aland Islands', 1], ['Algeria', 8], ['American Samoa', 20], ['Angola', 173], ['Anguilla', 14], ['Argentina', 327], ['Armenia', 152], ['Australia', 71], ['Austria', 1], ['Azerbaijan', 6], ['Bangladesh', 72], ['Barbados', 7], ['Belgium', 3], ['Benin', 1], ['Bermuda', 134], ['Bhutan', 1], ['Bolivia', 80], ['Botswana', 10], ['Brazil', 726], ['British Virgin Islands', 23], ['Bulgaria', 1], ['Burkina Faso', 2], ['Burundi', 1], ['Cambodia', 62], ['Cameroon', 25], ['Canada', 35], ['Cape Verde', 263], ['Chad', 1], ['Chile', 40], ['Chile, Bolivia', 1], ['China', 1449], ['China, Myanmar, Thailand', 1], ['Colombia', 993], ['Costa Rica', 8], ['Cuba', 2], ['Cyprus', 1], ['Czech Republic', 0], ['Democratic Republic of the Congo', 53], ['Djibouti', 2], ['Dominica', 1], ['Dominican Republic', 18], ['Ecuador', 512], ['Egypt', 15], ['El Salvador', 1], ['Equatorial Guinea', 504], ['Eritrea', 7], ['Ethiopia', 32], ['France', 10], ['French Guiana', 17], ['French Polynesia', 2], ['Gabon', 7], ['Georgia', 71], ['Germany', 27], ['Ghana', 19], ['Greece', 4], ['Grenada', 3], ['Guadeloupe', 17], ['Guam', 7], ['Guatemala', 3], ['Guinea-Bissau', 14], ['Guyana', 41], ['Haiti', 14], ['Heard Island and McDonald Islands', 4], ['Honduras', 23], ['Hong Kong', 10], ['Iceland', 55], ['Iceland, Fiji', 1], ['Iceland, Papua New Guinea', 2], ['India', 5019], ['Indonesia', 330], ['Iran', 361], ['Iraq', 8], ['Ireland', 32], ['Israel', 3], ['Italy', 8], ['Ivory Coast', 39], ['Jamaica', 23], ['Japan', 22], ['Kazakhstan', 43], ['Kenya', 125], ['Kyrgyzstan', 7], ['Laos', 97], ['Lesotho', 4], ['Liberia', 12], ['Libya', 5], ['Madagascar', 1109], ['Malawi', 1], ['Malaysia', 346], ['Marshall Islands', 2], ['Martinique', 9], ['Mauritania', 4], ['Mexico', 291], ['Micronesia', 1], ['Mongolia', 67], ['Montserrat', 3], ['Morocco', 38], ['Mozambique', 71], ['Myanmar', 344], ['Namibia', 109], ['Nepal', 6], ['Netherlands', 64], ['New Caledonia', 13], ['New Zealand', 33], ['Nicaragua', 2], ['Niger', 0], ['Nigeria', 8], ['Northern Mariana Islands', 3], ['Oman', 33], ['Pakistan', 38], ['Palau', 3], ['Palestine', 1], ['Panama', 168], ['Papua New Guinea', 994], ['Paraguay', 27], ['Peru', 956], ['Philippines', 57], ['Poland', 1], ['Portugal', 5], ['Puerto Rico', 60], ['Puerto Rico, United States of America', 1], ['Republic of the Congo', 37], ['Russia', 19], ['Rwanda', 5], ['Saint Helena, Ascension and Tristan da Cunha', 83], ['Saint Lucia', 6], ['Saint Pierre and Miquelon', 19], ['Saint Pierre and Miquelon, Equatorial Guinea', 1], ['Saint Vincent and the Grenadines', 12], ['Sao Tome and Principe', 9], ['Saudi Arabia', 7], ['Senegal', 4], ['Serbia', 2], ['Seychelles', 7], ['Sierra Leone', 1], ['Singapore', 1300], ['Sint Martin', 3], ['Solomon Islands', 8], ['Somalia', 45], ['South Africa', 196], ['South Sudan', 2], ['Spain', 36], ['Sri Lanka', 234], ['Sudan', 25], ['Suriname', 46], ['Swaziland', 3], ['Sweden', 8], ['Switzerland', 6], ['Syria', 7], ['Taiwan', 18], ['Tajikistan', 2], ['Tanzania', 128], ['Thailand', 299], ['Timor-Leste', 2], ['Togo', 866], ['Trinidad and Tobago', 32], ['Tunisia', 6], ['Turkey', 215], ['Turkmenistan', 19], ['Turks and Caicos Islands', 14], ['Uganda', 14], ['United Kingdom', 22], ['United States Virgin Islands', 17], ['United States of America', 422], ['Uruguay', 20], ['Uzbekistan', 6], ['Vanuatu', 19], ['Venezuela', 171], ['Vietnam', 2448], ['Vietnam, Cambodia', 1], ['Virgin Islands', 5], ['Yemen', 38], ['Zambia', 14], ['Zimbabwe', 86], ['annobon island', 1], ['flores island', 4], ['indonesian new guinea', 0], ['nagorno-karabakh', 10], ['saba island', 4], ['singapore island', 24], ['socotra island', 1], ['tobago island', 4], ['turk island', 3] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=53919', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 184, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);