我正在使用实时数据构建Google地图应用程序。 我知道有两个解决方法可以刷新Fusion Table Layer(下面)。
是否有适合的API - 可能类似于'参考' PlaceResult有哪些? 如果没有,哪种解决方法被认为是更好的做法?
解决方法:
操纵位置过滤器(source):
fusionTable.setOptions({
query: {
select: 'Location',
from: 'fusion-table-id',
where: "location not equal to" + (Math.floor(Math.random() * 10000000)).toString()
},
map: _map
});
操作切片的网址(source):
$("img[src*='fusion-table-id']").each(function () {
$(this).attr("src", $(this).attr("src") + "&" + (new Date()).getTime());
});
谢谢,
HW