绕过Fusion Table图层缓存

时间:2014-02-16 03:02:27

标签: google-maps caching google-maps-api-3 real-time google-fusion-tables

我正在使用实时数据构建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

1 个答案:

答案 0 :(得分:0)

建议Dr.Molle

  1. 如果您需要元数据(即信息窗口)
  2. ,请使用第一个
  3. 如果您需要的只是几何体,请使用第二个。