1
這些是我搜索我的表格和製作覆蓋圖的兩個函數。 (地圖在不同的功能中創建)。出於某種原因,點陣圖可以正常工作,但熱圖不適用於where子句。任何見解?Google Fusion Tables中的熱圖問題
function heatmap() {
var layer = new google.maps.FusionTablesLayer({
query: {
select: 'LOCATION',
from: '1614684',
where: "CRIME = 'HOMICIDE'"
},
heatmap: {
enabled: true
}
});
layer.setMap(map);
}
function dotmap() {
var layer = new google.maps.FusionTablesLayer({
query: {
select: 'LOCATION',
from: '1614684',
where: "CRIME = 'HOMICIDE'"
}
});
layer.setMap(map);
}
這個例子看起來不錯:https://google-developers.appspot.com/maps/documentation/javascript/examples/full/layer-fusiontables-heatmap?hl = nl 但我根本沒有看到任何熱圖數據使用這個確切的例子和表減少到只有幾百行。 – marcovtwout