Mapbox GL JS更新图像叠加层的来源

时间:2018-07-18 09:56:44

标签: javascript mapbox geospatial mapbox-gl-js

我正在一个项目中,我在屏幕上一次拥有4张地图。我有一个准系统菜单,用户可以在其中选择一个叠加层,并在正确的地图上显示。

这有效,但是我使用的图像叠加层的图像源每2分钟更新一次服务器端。我只想拥有一个简单的功能来自动重新获取源代码,因此可以保证每2分钟更新一次。我添加了一张图片以显示其工作原理。

我找到了有关以这种方式更新GeoJSON文件的Mapbox API文档,但是我不知道如何自动更新图像源。我没有用。

这是我的屏幕快照,其中包含实际的源代码和图层,在下面,我将为要执行的操作编写伪代码。

Edited Screenshot

这是源和图层

topleftmapbox.on('load', function() {
  topleftmapbox.addSource("source_KEWX_L2_REFLECTIVITY", {
    "type": "image",
    "url": "images/KEWX_L2_REFLECTIVITY.gif",
    "coordinates": [

      [-103.009641, 33.911],
      [-94.009641, 33.911],
      [-94.009641, 24.911],
      [-103.009641, 24.911]
    ]
  })

  var layers = topleftmapbox.getStyle().layers;
  // Find the index of the first symbol layer in the map style
  var firstSymbolId;
  for (var i = 0; i < layers.length; i++) {
    if (layers[i].type === 'symbol') {
      firstSymbolId = layers[i].id;
      break;
    }
  }

  topleftmapbox.addLayer({
    "id": "overlay_KEWX_L2_REFLECTIVITY",
    "source": "source_KEWX_L2_REFLECTIVITY",
    "type": "raster",
    "raster-opacity": 0.5,
    "layout": {
      "visibility": "none"
    },
  }, firstSymbolId)
});

我想做什么的伪代码:

On Map load() {
  start timer for every 2 minutes
  Get Source "source_KEWX_L2_REFLECTIVITY"
  Refresh the source with same URL ("images/KEWX_L2_REFLECTIVITY.gif") to make sure its live.
  keep doing this every 2 minutes
}

1 个答案:

答案 0 :(得分:1)

(现在有)updateImage()方法,您可以这样做:

map.getSource('source_KEWX_L2_REFLECTIVITY').updateImage({
  url: "images/KEWX_L2_REFLECTIVITY.gif?" + counter++,
  coordinates': [
    [-103.009641, 33.911],
    [-94.009641, 33.911],
    [-94.009641, 24.911],
    [-103.009641, 24.911]
  ]
});

包括递增的counter将确保您不显示缓存的图像。