Hey guys, I'm a newbie here in google's geomap stuff.
I'm trying to combine/merge both examples you can find on the
documentation page :
http://code.google.com/intl/es-ES/apis/visualization/documentation/gallery/geomap.html
As you can see, there is a world map example with countries and
another one with US cities.
My idea is, if I have the world map, and click inside the Us, get into
the markers view and change the region to US.
But by know, I've been trying this and it's impossible.
I've tried adding some event listeners with 'regionClick' or
'zoomOut', but it didn't work.
Somethins like this :
var options = {};
google.visualization.events.addListener(
_this.geomap , 'regionClick', function(e) {
alert(e['region']);
});
If