如何双击Openstreetmap获取坐标?

时间:2016-04-05 19:45:50

标签: angularjs angularjs-directive openstreetmap openlayers-3 angular-openlayers

我正在使用angular-openlayers-directive,我希望得到双击的点的坐标。

类似的问题:

Convert point to lat lon

但我想在angularjs中使用它。

1 个答案:

答案 0 :(得分:0)

您应该查看此示例:http://tombatossals.github.io/angular-openlayers-directive/examples/080-events-propagation-example.html。它显示了如何找到鼠标悬停的lat-long坐标。另外,这里有一个小提琴,展示了如何将其扩展为双击:http://jsfiddle.net/anushamc/6q2az5xz/。简而言之,您需要通过将其包含在默认值中来监听地图上的事件,例如:

defaults: {
      events: {
        map: ['singleclick', 'pointermove', 'dblclick']
      }
    }

<openlayers ol-defaults="defaults"></openlayers>

并在范围内包含openlayers.map.dblclick的侦听器。

$scope.$on('openlayers.map.dblclick', function(event, data) {
    $scope.$apply(function() {
      if ($scope.projection === data.projection) {
        $scope.mousedoubleclickposition = data.coord;
      } else {
        var p = ol.proj.transform([data.coord[0], data.coord[1]], data.projection, $scope.projection);
        $scope.mousedoubleclickposition = {
          lat: p[1],
          lon: p[0],
          projection: $scope.projection
        }
      }
    });
  });