接受经纬度图层

时间:2019-05-06 15:47:19

标签: javascript openlayers

早上好,我有一个问题,我正在创建一个地图,在其中创建两个指针(原点-目的地),在其中可以根据文本框中的地址找到点。就像在几个位置一样,未定义地址是我想要做的,是当用户拖动它时取指针的纬度和经度。到目前为止,我只能移动指针,但无法恢复它们的经度和纬度。我在执行代码的那部分共享代码。

//**** para mover el puntero Origen *****
var modifyOrigen = new ol.interaction.Modify({source: sourceOrigen});


   map.addInteraction(modifyOrigen);
   function addInteractions(e) {
   drawOrigen = new ol.interaction.Draw({
    source: sourceOrigen,
   type: iconoParadaCoche.value
  });

 map.addInteraction(draw);
 snapOrigen = new ol.interaction.Snap({source: sourceOrigen}); 
 map.addInteraction(snapOrigen);

}

 //**** para mover el puntero Destino *****
 var modifyDestino = new ol.interaction.Modify({source: 
 sourceDestino});
 map.addInteraction(modifyDestino);

 function addInteractions() {
  drawDestino = new ol.interaction.Draw({

    source: sourceDestino,
   type: iconoParadaCoche.value

  });
  map.addInteraction(drawDestino);
  snapDestino = new ol.interaction.Snap({source: sourceDestino});
   map.addInteraction(snapDestino);

 }

1 个答案:

答案 0 :(得分:0)

您应该能够在Modifyend事件中获取坐标

modifyOrigen.on('modifyend', function(evt) { 
  console.log(evt.features.item(0).getGeometry().getCoordinates());
});