如何在鼠标移动之前使创建的绘图可见

时间:2019-04-06 10:36:48

标签: openlayers-3

有没有办法让刚创建的Draw交互作用在第一个mousemouse事件之前可视化?

我使用openlayers 4.6.5。该应用程序创建ol.interaction.Draw来响应键盘事件。类型是LineString。 第一次移动鼠标后,预期的圆圈将显示在鼠标位置。 我的问题是,在用户第一次移动鼠标之前,绘图交互不会显示任何内容。

1 个答案:

答案 0 :(得分:0)

互动是由鼠标事件驱动的,因此您需要重新运行上一个事件。

pointermove个事件的侦听器添加到地图中,并保存最后一个侦听器

var lastEvent;
map.on('pointermove', function(event){ lastEvent = event; });

然后,当您添加交互时,使其可以处理上一个事件

map.addInteraction(draw);
draw.handleEvent(lastEvent);

版本4.6.4适用于我。 5秒后添加一个交互,然后以5和10秒的间隔删除并添加新的交互:

  var raster = new ol.layer.Tile({
    source: new ol.source.OSM()
  });

  var source = new ol.source.Vector();

  var vector = new ol.layer.Vector({
    source: source
  });

  var map = new ol.Map({
    layers: [raster, vector],
    target: 'map',
    view: new ol.View({
      center: [-11000000, 4600000],
      zoom: 4
    })
  });

  var draw; // global so we can remove it later
  function addInteraction() {
      draw = new ol.interaction.Draw({
        source: source,
        type: 'LineString'
      });
      map.addInteraction(draw);
  }

  var lastEvent;
  map.on('pointermove', function(event){ lastEvent = event; });

  var add = false;
  setInterval(function(){
    add = !add;
    if (add) {
      addInteraction();
      draw.handleEvent(lastEvent);
    } else {
      map.removeInteraction(draw);
    }
  }, 5000);
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/openlayers/4.6.4/ol.css" type="text/css">
<!-- The line below is only needed for old environments like Internet Explorer and Android 4.x -->
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList,URL"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/openlayers/4.6.4/ol.js"></script>
<div id="map" class="map"></div>