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
| import GeoJSON from 'ol/format/GeoJSON.js'; import Map from 'ol/Map.js'; import View from 'ol/View.js'; import {Circle as CircleStyle, Fill, 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 {fromLonLat} from 'ol/proj.js';
const source = new VectorSource({ url: 'data/geojson/switzerland.geojson', format: new GeoJSON(), }); const style = new Style({ fill: new Fill({ color: 'rgba(255, 255, 255, 0.6)', }), stroke: new Stroke({ color: '#319FD3', width: 1, }), image: new CircleStyle({ radius: 5, fill: new Fill({ color: 'rgba(255, 255, 255, 0.6)', }), stroke: new Stroke({ color: '#319FD3', width: 1, }), }), }); const vectorLayer = new VectorLayer({ source: source, style: style, }); const view = new View({ center: fromLonLat([6.6339863, 46.5193823]), padding: [170, 50, 30, 150], zoom: 6, }); const map = new Map({ layers: [ new TileLayer({ source: new OSM(), }), vectorLayer, ], target: 'map', view: view, });
vectorLayer.getSource().on('featuresloadend', function () { const zoomtoswitzerland = document.getElementById('zoomtoswitzerland'); zoomtoswitzerland.addEventListener( 'click', function () { const feature = source.getFeatures()[0]; const polygon = feature.getGeometry(); view.fit(polygon); }, false );
const centerlausanne = document.getElementById('centerlausanne'); centerlausanne.addEventListener( 'click', function () { const feature = source.getFeatures()[1]; const point = feature.getGeometry(); view.setCenter(point.getCoordinates()); }, false ); });
|