function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1209], ['American Samoa', 6], ['Argentina', 25], ['Australia', 65], ['Austria', 1], ['Bangladesh', 1], ['Bolivia', 823], ['Brazil', 157], ['Cameroon', 2], ['Canada', 916], ['Chile', 22], ['China', 33], ['Colombia', 231], ['Comoros', 2], ['Costa Rica', 16], ['Cuba', 2], ['Czech Republic', 4], ['Dominican Republic', 3], ['Ecuador', 74], ['Fiji', 12], ['Finland', 1], ['France', 5], ['French Guiana', 2], ['Georgia', 4], ['Germany', 92], ['Greenland', 4], ['Guadeloupe', 2], ['Guinea-Bissau', 2], ['Haiti', 1], ['Honduras', 1], ['Iceland', 2], ['India', 39], ['Indonesia', 13], ['Jamaica', 5], ['Japan', 16], ['Kenya', 11], ['Madagascar', 12], ['Malaysia', 20], ['Mauritius', 2], ['Mexico', 4], ['Micronesia', 1], ['Myanmar', 3], ['Nepal', 2], ['New Caledonia', 504], ['New Zealand', 2120], ['Norway', 2], ['Panama', 2361], ['Papua New Guinea', 129], ['Peru', 8], ['Philippines', 4], ['Poland', 1], ['Portugal', 1], ['Puerto Rico', 3], ['Russia', 358], ['Rwanda', 2], ['RĂ©union', 28], ['Saint Helena, Ascension and Tristan da Cunha', 532], ['Samoa', 7], ['Seychelles', 2], ['Singapore', 3], ['Solomon Islands', 2], ['South Africa', 4], ['South Georgia and the South Sandwich Islands', 1], ['South Korea', 10], ['Sri Lanka', 2], ['Suriname', 2], ['Taiwan', 6], ['Tanzania', 0], ['Thailand', 6], ['Uganda', 2], ['United Kingdom', 11], ['United States of America', 25], ['Vanuatu', 3], ['Venezuela', 49], ['Vietnam', 31], ['Yemen', 3], ['ecuad or', 1], ['indo nesia', 2], ['reunion island', 9], ['samoa island', 3] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=10085', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 80, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);