function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 28412], ['Afghanistan', 481], ['Albania', 0], ['Algeria', 431], ['American Samoa', 2], ['Angola', 1], ['Argentina', 32], ['Armenia', 612], ['Australia', 3495], ['Austria', 1001], ['Azerbaijan', 1717], ['Bahamas', 1], ['Bahamas, Turks and Caicos Islands', 1], ['Bangladesh', 1], ['Bolivia', 2], ['Bosnia and Herzegovina', 18], ['Brazil', 3542], ['Bulgaria', 68], ['Cambodia', 1], ['Cameroon', 14], ['Canada', 34], ['Chile', 30], ['China', 1556], ['Colombia', 346], ['Comoros', 1], ['Costa Rica', 30], ['Croatia', 172], ['Cuba', 1], ['Cyprus', 2], ['Czech Republic', 48], ['Democratic Republic of the Congo', 1], ['Denmark', 28], ['Dominica', 3], ['Ecuador', 38], ['El Salvador', 9], ['Equatorial Guinea', 9], ['Ethiopia', 1], ['France', 103], ['French Guiana', 12], ['Gambia', 2], ['Georgia', 2114], ['Germany', 56063], ['Gibraltar', 2], ['Greece', 70], ['Greenland', 1], ['Grenada', 60], ['Guadeloupe', 93], ['Guatemala', 6], ['Guinea-Bissau', 2], ['Guyana', 6], ['Haiti', 2], ['Heard Island and McDonald Islands', 316], ['Hong Kong', 1], ['Hungary', 13], ['Hungary, Serbia, Romania, Moldova', 108], ['Iceland', 817], ['India', 80], ['Indonesia', 8], ['Iran', 19], ['Iraq', 2], ['Isle of Man', 19], ['Israel', 0], ['Italy', 523], ['Ivory Coast', 1], ['Jamaica', 3], ['Japan', 84], ['Kenya', 274], ['Laos', 103], ['Lebanon', 4], ['Lesotho', 5], ['Libya', 4], ['Macedonia', 3], ['Madagascar', 1563], ['Malawi', 1], ['Malaysia', 12], ['Maldives', 1], ['Martinique', 63], ['Mexico', 51], ['Morocco', 46], ['Mozambique', 14], ['Myanmar', 81], ['Namibia', 128], ['New Caledonia', 2], ['New Zealand', 3], ['Nigeria', 10], ['North Korea', 1], ['Panama', 18], ['Paraguay', 9], ['Peru', 49], ['Philippines', 16], ['Puerto Rico', 1], ['Romania', 18], ['Russia', 2819], ['Rwanda', 137], ['RĂ©union', 6], ['Saint Barthelemy', 1], ['Saint Helena, Ascension and Tristan da Cunha', 718], ['Saint Kitts and Nevis', 3], ['Saint Lucia', 3], ['Saint Vincent and the Grenadines', 263], ['Saudi Arabia', 1], ['Serbia', 288], ['Sierra Leone', 1], ['Singapore', 5], ['Slovakia', 257], ['Slovenia', 51], ['South Africa', 205], ['South Korea', 15], ['Spain', 145], ['Sri Lanka', 36], ['Sweden', 7], ['Switzerland', 817], ['Syria', 1], ['Taiwan', 75], ['Tajikistan', 21], ['Tanzania', 1905], ['Thailand', 996], ['Trinidad and Tobago', 34], ['Tunisia', 1148], ['Turkey', 18], ['Turks and Caicos Islands', 1], ['Uganda', 2], ['Ukraine', 24], ['United Kingdom', 78], ['United States Virgin Islands', 3], ['United States of America', 2124], ['Uruguay', 35], ['Vanuatu', 31], ['Venezuela', 1], ['Vietnam', 251], ['Wake Island', 24], ['Zimbabwe', 32], ['ile maurice', 5], ['tanganykia', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=117740', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 134, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);