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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
| import Map from 'ol/Map.js'; import View from 'ol/View.js'; import {platformModifierKeyOnly} from 'ol/events/condition.js'; import {getWidth} from 'ol/extent.js'; import GeoJSON from 'ol/format/GeoJSON.js'; import DragBox from 'ol/interaction/DragBox.js'; import Select from 'ol/interaction/Select.js'; import VectorLayer from 'ol/layer/Vector.js'; import VectorSource from 'ol/source/Vector.js'; import Fill from 'ol/style/Fill.js'; import Stroke from 'ol/style/Stroke.js'; import Style from 'ol/style/Style.js';
const vectorSource = new VectorSource({ url: 'https://openlayers.org/data/vector/ecoregions.json', format: new GeoJSON(), });
const style = new Style({ fill: new Fill({ color: '#eeeeee', }), });
const map = new Map({ layers: [ new VectorLayer({ source: vectorSource, background: '#1a2b39', style: function (feature) { const color = feature.get('COLOR_BIO') || '#eeeeee'; style.getFill().setColor(color); return style; }, }), ], target: 'map', view: new View({ center: [0, 0], zoom: 2,
constrainRotation: 16, }), });
const selectedStyle = new Style({ fill: new Fill({ color: 'rgba(255, 255, 255, 0.6)', }), stroke: new Stroke({ color: 'rgba(255, 255, 255, 0.7)', width: 2, }), });
const select = new Select({ style: function (feature) { const color = feature.get('COLOR_BIO') || '#eeeeee'; selectedStyle.getFill().setColor(color); return selectedStyle; }, }); map.addInteraction(select);
const selectedFeatures = select.getFeatures();
const dragBox = new DragBox({ condition: platformModifierKeyOnly, });
map.addInteraction(dragBox);
dragBox.on('boxend', function () { const boxExtent = dragBox.getGeometry().getExtent();
const worldExtent = map.getView().getProjection().getExtent(); const worldWidth = getWidth(worldExtent); const startWorld = Math.floor((boxExtent[0] - worldExtent[0]) / worldWidth); const endWorld = Math.floor((boxExtent[2] - worldExtent[0]) / worldWidth);
for (let world = startWorld; world <= endWorld; ++world) { const left = Math.max(boxExtent[0] - world * worldWidth, worldExtent[0]); const right = Math.min(boxExtent[2] - world * worldWidth, worldExtent[2]); const extent = [left, boxExtent[1], right, boxExtent[3]];
const boxFeatures = vectorSource .getFeaturesInExtent(extent) .filter( (feature) => !selectedFeatures.getArray().includes(feature) && feature.getGeometry().intersectsExtent(extent), );
const rotation = map.getView().getRotation(); const oblique = rotation % (Math.PI / 2) !== 0;
if (oblique) { const anchor = [0, 0]; const geometry = dragBox.getGeometry().clone(); geometry.translate(-world * worldWidth, 0); geometry.rotate(-rotation, anchor); const extent = geometry.getExtent(); boxFeatures.forEach(function (feature) { const geometry = feature.getGeometry().clone(); geometry.rotate(-rotation, anchor); if (geometry.intersectsExtent(extent)) { selectedFeatures.push(feature); } }); } else { selectedFeatures.extend(boxFeatures); } } });
dragBox.on('boxstart', function () { selectedFeatures.clear(); });
const infoBox = document.getElementById('info');
selectedFeatures.on(['add', 'remove'], function () { const names = selectedFeatures.getArray().map((feature) => { return feature.get('ECO_NAME'); }); if (names.length > 0) { infoBox.innerHTML = names.join(', '); } else { infoBox.innerHTML = 'None'; } });
|