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
| import GeoJSON from 'ol/format/GeoJSON.js'; import LinearRing from 'ol/geom/LinearRing.js'; import Map from 'ol/Map.js'; import OSM from 'ol/source/OSM.js'; import VectorSource from 'ol/source/Vector.js'; import View from 'ol/View.js'; import { LineString, MultiLineString, MultiPoint, MultiPolygon, Point, Polygon, } from 'ol/geom.js'; import {Tile as TileLayer, Vector as VectorLayer} from 'ol/layer.js'; import {fromLonLat} from 'ol/proj.js';
const source = new VectorSource(); fetch('data/geojson/roads-seoul.geojson') .then(function (response) { return response.json(); }) .then(function (json) { const format = new GeoJSON(); const features = format.readFeatures(json, { featureProjection: 'EPSG:3857', });
const parser = new jsts.io.OL3Parser(); parser.inject( Point, LineString, LinearRing, Polygon, MultiPoint, MultiLineString, MultiPolygon );
for (let i = 0; i < features.length; i++) { const feature = features[i]; const jstsGeom = parser.read(feature.getGeometry());
const buffered = jstsGeom.buffer(40);
feature.setGeometry(parser.write(buffered)); }
source.addFeatures(features); }); const vectorLayer = new VectorLayer({ source: source, });
const rasterLayer = new TileLayer({ source: new OSM(), });
const map = new Map({ layers: [rasterLayer, vectorLayer], target: document.getElementById('map'), view: new View({ center: fromLonLat([126.979293, 37.528787]), zoom: 15, }), });
|