移动设备上的 OpenLayers 3 dragBox

OpenLayers 3 dragBox on mobile

我目前正在为 select 多个向量实现一个 dragBox。 由于 dragBox 对象需要一个 "condition:" 并且在官方示例中它是一个 keyPress,"shift" 我想,我已经在 Angular 中设置了一个单例布尔变量,它将条件设置为 "ol.events.condition.always" 或 "ol.events.condition.never" 对象接受并在计算机上正常工作...但是在移动设备上不起作用,我认为这可能在移动设备上工作,比如画一个圆圈,但没有。

有没有办法在移动设备上进行这项工作?

这是我的代码。

 mapFeature.addDragBox = function () {

            webMapValues.dragBox = new ol.interaction.DragBox({
                /* dragbox interaction is active only if "multi select" 
check box is checked is pressed */
                condition: ((webMapValues.multiSelect == true) ? 
ol.events.condition.always : ol.events.condition.never),
                /* style the box */
                style: new ol.style.Style({
                    stroke: new ol.style.Stroke({
                        color: [0, 0, 255, 1]
                    })
                })
            });
            /* add the DragBox interaction to the map */
            webMapValues.mapObj.addInteraction(webMapValues.dragBox);

            if (webMapValues.multiSelect == true) {
                webMapValues.vectorMultiSelect = new 
ol.interaction.Select();

webMapValues.mapObj.addInteraction(webMapValues.vectorMultiSelect);

                webMapValues.multiSelectFeatures = 
webMapValues.vectorMultiSelect.getFeatures();
                webMapValues.dragBox.on('boxend', function () {
                    // features that intersect the box are added to the 
collection of
                    // selected features
                    webMapValues.clickedCoordinates = 
webMapValues.dragBox.getGeometry().getCoordinates();
                    var extent = 
webMapValues.dragBox.getGeometry().getExtent();
                    var layer = rcisMapService.getLayer("vector");
                    angular.forEach(layer, function (Layer, key) {
                        var source = Layer.getSource();
                        source.forEachFeatureIntersectingExtent(extent, 
function (feature) {

webMapValues.multiSelectedFeatures.push(vector);
                        });
                    });
                    mapFeature.Highlight();

                });

                webMapValues.dragBox.on('boxstart', function () {
                    webMapValues.popup.setPosition(undefined);
                    webMapValues.multiSelectedFeatures = [];
                });
            }

        };

OpenLayers 3 中不存在在移动设备上 "Drag" 的能力...最接近它的是使用 "Draw" 功能绘制一个正方形,然后得到所有相交的东西和那个方块。

 if (selectionToolsSelection == "Box") {
                var geometryFunction = ol.interaction.Draw.createBox();
                drawObj = new ol.interaction.Draw({
                    features: features,
                    type: "Circle",
                    geometryFunction: geometryFunction
                });
                mapObj.addInteraction(drawObj);

            }  

然后您可以捕获 "drawend" 事件并执行您需要的操作...

  drawObj.on('drawend', function (e) {Do magic stuff here});            

通过将条件选项设置为 mouseActionButton,拖动框支持触摸设备(参见:Pull Request: Support touch events for DragBox interaction

import {mouseActionButton} from 'ol/events/condition';

const dragBox = new DragBox({
  condition: mouseActionButton,
});