2011-09-25 129 views
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); 
} 

回答

3

我認爲這個問題是一樣的這裏提到: https://groups.google.com/forum/#!topic/fusion-tables-users-group/MkZ8KJT6oic

總之,比賽地圖在谷歌融合表是一個小片狀。你可能想要使用像gheat這樣的工作,但不像我想要的那樣簡單。

+0

這個例子看起來不錯:https://google-developers.appspot.com/maps/documentation/javascript/examples/full/layer-fusiontables-heatmap?hl = nl 但我根本沒有看到任何熱圖數據使用這個確切的例子和表減少到只有幾百行。 – marcovtwout