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
| import Draw from 'ol/interaction/Draw.js'; import Map from 'ol/Map.js'; import Point from 'ol/geom/Point.js'; import View from 'ol/View.js'; import {Icon, Stroke, Style} from 'ol/style.js'; import {OSM, Vector as VectorSource} from 'ol/source.js'; import {Tile as TileLayer, Vector as VectorLayer} from 'ol/layer.js'; import {get} from 'ol/proj.js';
const raster = new TileLayer({ source: new OSM(), });
const source = new VectorSource();
const styleFunction = function (feature) { const geometry = feature.getGeometry(); const styles = [ new Style({ stroke: new Stroke({ color: '#ffcc33', width: 2, }), }), ];
geometry.forEachSegment(function (start, end) { const dx = end[0] - start[0]; const dy = end[1] - start[1]; const rotation = Math.atan2(dy, dx); styles.push( new Style({ geometry: new Point(end), image: new Icon({ src: 'data/arrow.png', anchor: [0.75, 0.5], rotateWithView: true, rotation: -rotation, }), }) ); });
return styles; }; const vector = new VectorLayer({ source: source, style: styleFunction, });
const extent = get('EPSG:3857').getExtent().slice(); extent[0] += extent[0]; extent[2] += extent[2];
const map = new Map({ layers: [raster, vector], target: 'map', view: new View({ center: [-11000000, 4600000], zoom: 4, extent, }), });
map.addInteraction( new Draw({ source: source, type: 'LineString', }) );
|