function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 3863], ['Algeria', 3], ['Angola', 2], ['Antarctica', 8], ['Argentina', 134], ['Australia', 1287], ['Austria', 79], ['Bahamas', 2], ['Belgium', 1], ['Brazil', 6], ['Cameroon', 1], ['Canada', 62], ['Chile', 3], ['China', 44], ['Colombia', 3], ['Costa Rica', 23], ['Croatia', 2], ['Democratic Republic of the Congo', 7], ['Denmark', 32], ['Dominica', 1], ['Ecuador', 6], ['Equatorial Guinea', 7], ['Ethiopia', 2], ['Faroe Islands', 5], ['France', 13], ['Germany', 132], ['Greece', 1], ['Greenland', 566], ['Guinea-Bissau', 1], ['Hungary', 2], ['India', 231], ['Indonesia', 2], ['Israel', 64], ['Italy', 137], ['Japan', 76], ['Jordan', 1], ['Kyrgyzstan', 139], ['Libya', 8], ['Mexico', 88], ['Morocco', 1], ['New Zealand', 80], ['Norway', 8], ['Peru', 4], ['Philippines', 177], ['Poland', 743], ['Portugal', 104], ['Russia', 12], ['Saint Helena, Ascension and Tristan da Cunha', 12], ['Slovakia', 278], ['South Africa', 82], ['Spain', 42], ['Sweden', 1], ['Tanzania', 3], ['Tunisia', 24], ['Turkey', 1], ['Uganda', 3], ['Ukraine', 6], ['United Kingdom', 29], ['United States of America', 83], ['Vietnam', 42], ['maroc agadir', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=8780', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 61, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);