function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 6553], ['" indes orientales', 1], ['Afghanistan', 17], ['Algeria', 17], ['Angola', 8], ['Anguilla', 0], ['Antigua and Barbuda', 3], ['Argentina', 92], ['Armenia', 400], ['Australia', 3], ['Azerbaijan', 29], ['Bahamas', 50], ['Bahrain', 3], ['Barbados', 2], ['Belize', 3], ['Bhutan', 2], ['Bolivia', 15], ['Bonaire, Sint Eustatius and Saba', 1080], ['Botswana', 1], ['Brazil', 534], ['British Virgin Islands', 1], ['Burkina Faso, Chad', 8], ['Cambodia', 11], ['Cameroon', 21], ['Canada', 3], ['Chile', 538], ['China', 14762], ['Colombia', 13], ['Costa Rica', 138], ['Cuba', 57], ['Curaçao', 5], ['Cyprus', 38], ['Democratic Republic of the Congo', 18], ['Djibouti', 74], ['Dominica', 3], ['Dominican Republic', 2360], ['Ecuador', 9], ['Egypt', 16], ['El Salvador', 11], ['Eritrea', 0], ['Ethiopia', 2], ['France', 27], ['French Guiana', 4], ['Gabon', 8], ['Georgia', 24], ['Germany', 0], ['Ghana', 14], ['Greece', 21], ['Grenada', 33], ['Guadeloupe', 57], ['Guam', 36], ['Guatemala', 89], ['Guinea-Bissau', 3], ['Haiti', 134], ['Honduras', 20], ['Hong Kong', 50], ['Iceland', 91], ['India', 74], ['Indonesia', 262], ['Indonesia, Malaysia', 2], ['Iran', 289], ['Iraq', 12], ['Israel', 56], ['Italy', 341], ['Ivory Coast', 20], ['Jamaica', 66], ['Japan', 1], ['Jordan', 9], ['Kazakhstan', 250], ['Kenya', 13], ['Laos', 357], ['Lebanon', 5], ['Lesotho', 1], ['Madagascar', 16], ['Malawi', 7], ['Malaysia', 238], ['Marshall Islands', 1], ['Martinique', 9], ['Mexico', 2729], ['Mongolia', 334], ['Montserrat', 13], ['Morocco', 80], ['Mozambique', 3], ['Myanmar', 38], ['Nepal', 62], ['New Caledonia', 4], ['New Zealand', 8], ['Nicaragua', 8], ['Niger', 4], ['Nigeria', 6], ['North Korea', 1], ['Oman', 17], ['Pakistan', 15], ['Palau', 37], ['Panama', 37], ['Papua New Guinea', 7], ['Paraguay', 16], ['Peru', 31], ['Philippines', 1043], ['Portugal', 78], ['Puerto Rico', 57], ['Republic of the Congo', 3], ['Romania', 2], ['Russia', 3185], ['Rwanda', 2], ['Réunion', 92], ['Saint Barthelemy', 1], ['Saint Kitts and Nevis', 3], ['Saint Lucia', 641], ['Saint Lucia, Saint Vincent and the Grenadines', 1], ['Saint Pierre and Miquelon', 1], ['Saint Vincent and the Grenadines', 9], ['Samoa', 1], ['Saudi Arabia', 705], ['Senegal', 0], ['Serbia', 2], ['Sierra Leone', 2], ['Sint Martin', 1], ['Slovakia', 1], ['South Africa', 46], ['Spain', 121], ['Sri Lanka', 2], ['Sudan', 0], ['Suriname', 9], ['Switzerland', 8], ['Syria', 23], ['Taiwan', 6], ['Tajikistan', 1], ['Tanzania', 2036], ['Thailand', 131], ['Togo', 1], ['Trinidad and Tobago', 15], ['Turkey', 2533], ['Turkmenistan', 310], ['Turks and Caicos Islands', 1], ['Uganda', 4], ['United Kingdom', 3], ['United States of America', 409], ['Uruguay', 3], ['Uzbekistan', 8], ['Vanuatu', 26], ['Venezuela', 108], ['Vietnam', 46], ['Virgin Islands', 0], ['Yemen', 290], ['Zambia', 12], ['Zimbabwe', 23], ['erythraea', 0], ['ile maurice', 10], ['new guinea', 1], ['port', 7], ['rep. dom.', 1], ['republic of yemen / socotra', 1], ['senegal-gillon', 1], ['socotra island', 35] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=45052', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 155, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);