function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 7077], ['Afghanistan', 99], ['Algeria', 9], ['Angola', 4], ['Argentina', 52], ['Armenia', 26], ['Australia', 27], ['Austria', 26], ['Azerbaijan', 18], ['Bahrain', 3], ['Bangladesh', 1], ['Bhutan', 3], ['Bolivia', 572], ['Brazil', 40], ['Brunei', 3], ['Bulgaria', 2], ['Burkina Faso', 1], ['Burundi', 5], ['Cambodia', 1], ['Cameroon', 191], ['Canada', 898], ['Central African Republic', 6], ['Chile', 107], ['China', 3293], ['Colombia', 105], ['Comoros', 5], ['Costa Rica', 37], ['Croatia', 5], ['Cyprus', 8], ['Democratic Republic of the Congo', 93], ['Ecuador', 683], ['Egypt', 4], ['Equatorial Guinea', 24], ['Eritrea', 3], ['Estonia', 2], ['Ethiopia', 390], ['Fiji', 1], ['France', 25], ['French Guiana', 37], ['Gabon', 95], ['Georgia', 9], ['Germany', 7], ['Ghana', 4], ['Greece', 868], ['Grenada', 40], ['Guam', 28], ['Guinea-Bissau', 49], ['Guyana', 1], ['Hong Kong', 1], ['Hungary', 8], ['Iceland', 1], ['India', 262], ['Indonesia', 19], ['Iran', 3193], ['Iran, Afghanistan', 1], ['Iraq', 6], ['Israel', 12], ['Italy', 192], ['Ivory Coast', 47], ['Japan', 465], ['Japan, South Korea', 2], ['Jordan', 2], ['Kazakhstan', 683], ['Kenya', 62], ['Kyrgyzstan', 80], ['Lebanon', 10], ['Liberia', 102], ['Macedonia', 1], ['Madagascar', 56], ['Malawi', 4], ['Malaysia', 27], ['Malta', 18], ['Mauritius', 14], ['Mayotte', 1], ['Mexico', 390], ['Mongolia', 43], ['Morocco', 7], ['Mozambique', 36], ['Myanmar', 20], ['Namibia', 1], ['Nepal', 27], ['Netherlands', 3], ['Nicaragua', 9], ['Niger', 1], ['Nigeria', 15], ['North Korea', 12], ['Oman', 7], ['Pakistan', 36], ['Palestine', 4], ['Papua New Guinea', 5], ['Paraguay', 5], ['Peru', 397], ['Philippines', 12], ['Portugal', 2], ['Republic of the Congo', 34], ['Russia', 963], ['Rwanda', 11], ['RĂ©union', 4], ['Saint Helena, Ascension and Tristan da Cunha', 1], ['Sao Tome and Principe', 34], ['Saudi Arabia', 2], ['Serbia', 2], ['Sierra Leone', 13], ['Singapore', 5], ['Slovenia', 4], ['Slovenia, Serbia', 1], ['Solomon Islands', 1], ['Somalia', 2], ['South Africa', 17], ['South Korea', 10], ['Spain', 4561], ['Sri Lanka', 6], ['Sudan', 5], ['Suriname', 1], ['Sweden', 2], ['Switzerland', 9], ['Syria', 13], ['Taiwan', 53], ['Tajikistan', 124], ['Tanzania', 41], ['Thailand', 3], ['Togo', 1], ['Trinidad and Tobago', 40], ['Turkey', 1441], ['Turkmenistan', 67], ['Turks and Caicos Islands', 29], ['Uganda', 33], ['Ukraine', 8], ['United Arab Emirates', 1], ['United Kingdom', 1], ['United States of America', 3], ['Uzbekistan', 307], ['Venezuela', 4], ['Vietnam', 13], ['Yemen', 9], ['Zambia', 325], ['Zimbabwe', 9], ['ascension island', 1], ['b. alpes.', 1], ['british new guinea', 1], ['hidalgo', 2], ['madagaskar ile', 4], ['principe island', 21], ['sao tome island', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=29532', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 144, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);