I've a fusion table layer and I enabled heat map as follows and it is working fine in my map layer.
layer = new google.maps.FusionTablesLayer({
query: {
select: 'Lat',
from: FT_TableID
},
map: map,
// suppressInfoWindows: true
heatmap: { enabled: true },
options: {
styleId: 2,
templateId: 2
}
});
Is it possible to disable the heat map after a particular zoom level, say 13 so that after the zoom level = 13 I can view the actual markers from the fusion table.