I am using the geochart in order to display the map on my web page but it seems giving an error "this.each is not a function" so could any one help me out.
<script type="text/javascript">
google.load('visualization', '1', {'packages': ['geochart']});
</script>
function drawMap() {
var data = google.visualization.arrayToDataTable([
['Country', 'Popularity'],
['Germany', 200],
['United States', 300],
['Brazil', 400],
['Canada', 500],
['France', 600],
['RU', 700]
]);
var geochart = new google.visualization.GeoChart(
document.getElementById('chart_div'));
geochart.draw(data, {width: 556, height: 347});
}