I'm trying to fire a couple of functions after certain zoom levels are met on my Google Map. Below is probably not close to being right but I'm hoping it can give everyone an idea. I'm pretty sure you'll use a zoom_changed actionlistener but I'm pretty clueless after that.
google.maps.event.addListener(map, 'zoom_changed', function() {
map.Zoom(zoomLoad, 4);
});
function zoomLoad() {
getFishing();
getLaunches();
}
Any help pointing me in the right direction would be awesome.