我一直在谷歌地圖上使用融合表層。它工作正常,但它有100K行的限制。谷歌還發布了Google Map Engine,我的理解是它與企業應用程序的報價限制高的融合表類似。真的嗎?該官員是否發佈使用?融合表替代
我的主要問題是,如果有一種方法可以用API調用來替換融合表層,它會返回所有多邊形點的json,並且數據需要在地圖上繪製它們。我發現了一種叫做getjson的東西,我不知道如何使用它來替換融合表層。如果我按照自己的邏輯走,考慮到大量數據,性能方面會更快嗎?
融合表層的任何其他建議或替代?
stateLayer = new google.maps.FusionTablesLayer({
query: {
select: '\'Geocodable address\'',
from: '1rDDfLsnufOJ6a23423adskfjl23423'
},
styles: [{
where: " count <= 10 ",
polygonOptions: {
fillOpacity: 0.1,
fillColor: 'blue',
strokeWeight: 0.1
}
}, {
where: " count >= 11 AND count < 100",
polygonOptions: {
fillColor: 'red'
}
}, {
where: " count >= 100 AND count < 200 " ,
polygonOptions: {
fillColor: 'green'
}
}, {
where: " count >= 200 AND count < 300 " ,
polygonOptions: {
fillColor: 'yellow'
}
}}]
});
stateLayer.setMap(map);
只需在2016年5月進行快速更新... Fusion Tables現在允許每層350,000個點和5個活動層。 – 2016-05-14 11:44:45