import Map from '../src/ol/Map.js'; import View from '../src/ol/View.js'; import {Draw, Modify, Snap} from '../src/ol/interaction.js'; import {OSM, Vector as VectorSource} from '../src/ol/source.js'; import {Tile as TileLayer, Vector as VectorLayer} from '../src/ol/layer.js'; import {get} from '../src/ol/proj.js'; const raster = new TileLayer({ source: new OSM(), }); const source = new VectorSource(); const vector = new VectorLayer({ source: source, style: { 'fill-color': 'rgba(255, 255, 255, 0.2)', 'stroke-color': '#ffcc33', 'stroke-width': 2, 'circle-radius': 7, 'circle-fill-color': '#ffcc33', }, }); // Limit multi-world panning to one world east and west of the real world. // Geometry coordinates have to be within that range. 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, }), }); const modify = new Modify({source: source}); map.addInteraction(modify); let draw, snap; // global so we can remove them later const typeSelect = document.getElementById('type'); function addInteractions() { draw = new Draw({ source: source, type: typeSelect.value, }); map.addInteraction(draw); snap = new Snap({source: source}); map.addInteraction(snap); } /** * Handle change event. */ typeSelect.onchange = function () { map.removeInteraction(draw); map.removeInteraction(snap); addInteractions(); }; addInteractions();