返回介绍

点击容许偏差

发布于 2022-11-30 23:36:03 字数 4987 浏览 0 评论 0 收藏 0

本示例演示使用 hitTolerance 参数。

默认情况下,map.forEachFeatureAtPixel()函数只考虑直接位于所提供像素之下的特征。这可能会让用户难以与触屏设备上的功能进行交互。要考虑与所提供像素有一定距离的特征,请使用hitTolerance选项。例如,地图。forEachFeatureAtPixel(pixel, callback,{hitTolerance: 3})将用所有在所提供像素三个像素内的特征调用回调。 默认情况下,map.forEachFeatureAtPixel()方法只考虑当前点击像素下的图形要素。 这样会导致在触屏设备上很难进行交互(比如手指点击困难)。 如果想要获取在当前点击像素一定范围内的图形要素,使用 hitTolerance 选项即可。 比如,map.forEachFeatureAtPixel(pixel, callback, {hitTolerance: 3}) 将会返回点击像素周围三个像素点的所有图形要素。

main.js

import 'ol/ol.css';
import Feature from 'ol/Feature';
import LineString from 'ol/geom/LineString';
import Map from 'ol/Map';
import View from 'ol/View';
import {OSM, Vector as VectorSource} from 'ol/source';
import {Stroke, Style} from 'ol/style';
import {Tile as TileLayer, Vector as VectorLayer} from 'ol/layer';

const raster = new TileLayer({
  source: new OSM(),
});

const style = new Style({
  stroke: new Stroke({
    color: 'black',
    width: 1,
  }),
});

const feature = new Feature(
  new LineString([
    [-4000000, 0],
    [4000000, 0],
  ])
);

const vector = new VectorLayer({
  source: new VectorSource({
    features: [feature],
  }),
  style: style,
});

const map = new Map({
  layers: [raster, vector],
  target: 'map',
  view: new View({
    center: [0, 0],
    zoom: 2,
  }),
});

let hitTolerance;

const statusElement = document.getElementById('status');

map.on('singleclick', function (e) {
  let hit = false;
  map.forEachFeatureAtPixel(
    e.pixel,
    function () {
      hit = true;
    },
    {
      hitTolerance: hitTolerance,
    }
  );
  if (hit) {
    style.getStroke().setColor('green');
    statusElement.innerHTML = 'A feature got hit!';
  } else {
    style.getStroke().setColor('black');
    statusElement.innerHTML = 'No feature got hit.';
  }
  feature.changed();
});

const selectHitToleranceElement = document.getElementById('hitTolerance');
const circleCanvas = document.getElementById('circle');

const changeHitTolerance = function () {
  hitTolerance = parseInt(selectHitToleranceElement.value, 10);

  const size = 2 * hitTolerance + 2;
  circleCanvas.width = size;
  circleCanvas.height = size;
  const ctx = circleCanvas.getContext('2d');
  ctx.clearRect(0, 0, size, size);
  ctx.beginPath();
  ctx.arc(
    hitTolerance + 1,
    hitTolerance + 1,
    hitTolerance + 0.5,
    0,
    2 * Math.PI
  );
  ctx.fill();
  ctx.stroke();
};

selectHitToleranceElement.onchange = changeHitTolerance;
changeHitTolerance();

index.html

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Hit Tolerance</title>
    <!-- Pointer events polyfill for old browsers, see https://caniuse.com/#feat=pointer -->
    <script src="https://unpkg.com/elm-pep"></script>
    <!-- The line below is only needed for old environments like Internet Explorer and Android 4.x -->
    <script src="https://cdn.polyfill.io/v3/polyfill.min.js?features=fetch,requestAnimationFrame,Element.prototype.classList,URL,TextDecoder,Number.isInteger"></script>
    <style>
      .map {
        width: 100%;
        height:400px;
      }
    </style>
  </head>
  <body>
    <div id="map" class="map"></div>
    <span id="status">Try to click the line in the map.</span>
    <form class="form-inline">
      <label for="hitTolerance">Hit tolerance for selecting features: &nbsp;</label>
      <select id="hitTolerance" class="form-control">
        <option value="0" selected>0 Pixels</option>
        <option value="5">5 Pixels</option>
        <option value="10">10 Pixels</option>
      </select>
      &nbsp; Area: &nbsp;
      <canvas id="circle" style="vertical-align: middle" />
    </form>
    <script src="main.js"></script>
  </body>
</html>

package.json

{
  "name": "hit-tolerance",
  "dependencies": {
    "ol": "7.1.0"
  },
  "devDependencies": {
    "parcel": "^2.0.0-beta.1"
  },
  "scripts": {
    "start": "parcel index.html",
    "build": "parcel build --public-url . index.html"
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文