1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
| import Feature from 'ol/Feature.js'; import LineString from 'ol/geom/LineString.js'; import Map from 'ol/Map.js'; import View from 'ol/View.js'; import {OSM, Vector as VectorSource} from 'ol/source.js'; import {Stroke, Style} from 'ol/style.js'; import {Tile as TileLayer, Vector as VectorLayer} from 'ol/layer.js';
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();
|