function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 7659], ['Afghanistan', 10], ['Argentina', 4], ['Armenia', 15], ['Australia', 1193], ['Bahamas', 1], ['Bangladesh', 1], ['Brazil', 1310], ['Bulgaria', 23], ['Cambodia', 1], ['Cameroon', 3], ['Canada', 13], ['Chile', 26], ['China', 570], ['Colombia', 58], ['Costa Rica', 30], ['Denmark', 28], ['Ecuador', 34], ['El Salvador', 3], ['Equatorial Guinea', 5], ['France', 10], ['French Guiana', 11], ['Georgia', 9], ['Germany', 1848], ['Gibraltar', 2], ['Guatemala', 6], ['Guyana', 5], ['Haiti', 2], ['Heard Island and McDonald Islands', 32], ['Hungary', 2], ['Hungary, Serbia, Romania, Moldova', 108], ['Iceland', 462], ['India', 36], ['Indonesia', 1], ['Isle of Man', 19], ['Italy', 1], ['Ivory Coast', 1], ['Jamaica', 3], ['Japan', 3], ['Laos', 25], ['Lebanon', 2], ['Madagascar', 2], ['Malaysia', 10], ['Martinique', 46], ['Mexico', 28], ['Morocco', 23], ['Myanmar', 46], ['Namibia', 20], ['New Caledonia', 2], ['New Zealand', 2], ['North Korea', 1], ['Panama', 18], ['Peru', 46], ['Philippines', 16], ['Puerto Rico', 1], ['Romania', 3], ['Russia', 370], ['Rwanda', 52], ['Saint Helena, Ascension and Tristan da Cunha', 1], ['Saint Kitts and Nevis', 3], ['Saint Lucia', 3], ['Saint Vincent and the Grenadines', 263], ['Saudi Arabia', 1], ['Serbia', 42], ['Sierra Leone', 1], ['Singapore', 3], ['South Africa', 3], ['South Korea', 1], ['Spain', 1], ['Sri Lanka', 8], ['Sweden', 7], ['Switzerland', 14], ['Taiwan', 75], ['Tanzania', 660], ['Thailand', 394], ['Trinidad and Tobago', 29], ['Tunisia', 1], ['Turkey', 1], ['United Kingdom', 7], ['United States of America', 1844], ['Uruguay', 1], ['Vanuatu', 31], ['Vietnam', 106], ['Wake Island', 24], ['tanganykia', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=17787', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 85, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);