function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1909], ['Afghanistan', 1], ['Albania', 63], ['Algeria', 8], ['Antigua and Barbuda', 20], ['Argentina', 5], ['Armenia', 1], ['Australia', 20], ['Austria', 4], ['Azerbaijan', 4], ['Bahamas', 11], ['Belize', 2], ['Bolivia', 6], ['Bosnia and Herzegovina', 100], ['Brazil', 60], ['British Virgin Islands', 36], ['Canada', 418], ['Cayman Islands', 1], ['Chile', 552], ['China', 93], ['Colombia', 5], ['Costa Rica', 562], ['Croatia', 5], ['Cuba', 966], ['Dominica', 33], ['Dominican Republic', 1198], ['Ecuador', 6], ['El Salvador', 1], ['France', 5], ['French Guiana', 2], ['Georgia', 2], ['Germany', 6], ['Greece', 3], ['Grenada', 24], ['Grenada, Saint Vincent and the Grenadines', 1], ['Guadeloupe', 23], ['Guatemala', 23], ['Haiti', 2], ['Honduras', 25], ['Iceland', 4], ['India', 5], ['Indonesia', 77], ['Iran', 1392], ['Italy', 77], ['Jamaica', 14], ['Japan', 379], ['Malaysia', 158], ['Martinique', 15], ['Martinique, Saint Lucia', 1], ['Mexico', 174], ['Mongolia', 5], ['Montserrat', 3], ['Morocco', 77], ['Myanmar', 1], ['Netherlands', 1], ['New Zealand', 7], ['Palestine', 2], ['Panama', 53], ['Paraguay', 1], ['Peru', 53], ['Philippines', 3], ['Poland', 1], ['Portugal', 98], ['Puerto Rico', 13], ['Russia', 218], ['Saint Helena, Ascension and Tristan da Cunha', 5], ['Saint Kitts and Nevis', 7], ['Saint Lucia', 62], ['Saint Vincent and the Grenadines', 46], ['Serbia', 308], ['Slovakia', 2], ['South Korea', 4], ['Spain', 210], ['Sweden', 4], ['Switzerland', 1], ['Syria', 7], ['Trinidad and Tobago', 16], ['Turkey', 508], ['Turkmenistan', 2], ['Ukraine', 1], ['United Kingdom', 3], ['United States of America', 965], ['Uruguay', 3], ['Uzbekistan', 1], ['Venezuela', 21], ['Virgin Islands', 22], ['grenada island', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=11237', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 87, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);