我有一个融合表层,我启用了热图,如下所示,它在我的地图图层中工作正常。
layer = new google.maps.FusionTablesLayer({
query: {
select: 'Lat',
from: FT_TableID
},
map: map,
// suppressInfoWindows: true
heatmap: { enabled: true },
options: {
styleId: 2,
templateId: 2
}
});
是否可以在特定缩放级别后禁用热图,例如13,这样在缩放级别= 13之后,我可以从融合表中查看实际的标记。
答案 0 :(得分:0)
是的,确实如此!您只需要为地图对象zoom_changed事件设置一个事件监听器,并检查地图缩放级别。然后使用图层setOptions()方法重新设置图层的热图启用属性。因此,请将代码更改为以下内容:
layer = new google.maps.FusionTablesLayer({
query: {
select: 'Lat',
from: FT_TableID
},
map: map,
// suppressInfoWindows: true
heatmap: {
enabled: true
},
options: {
styleId: 2,
templateId: 2
}
});
var heatMapIsOn = true;
google.maps.event.addListener(map, 'zoom_changed', function () {
var zoom = map.getZoom();
//we could just reset the layers options at every zoom change, but that would be
//a bit redundant, so we will only reset layers options at zoom level 13
if (heatMapIsOn && zoom >= 13) {
layer.setOptions({heatmap: {enabled:false}});
heatMapIsOn = false;
} else if (!heatMapIsOn && zoom < 13) {
layer.setOptions({heatmap: {enabled:true}});
heatMapIsOn = true;
}
});