Files
openlayers/examples/wkt.js
Tim Schaub 7f47883c48 Transformed
2017-12-12 06:53:18 -07:00

38 lines
973 B
JavaScript

import _ol_Map_ from '../src/ol/Map.js';
import _ol_View_ from '../src/ol/View.js';
import _ol_format_WKT_ from '../src/ol/format/WKT.js';
import _ol_layer_Tile_ from '../src/ol/layer/Tile.js';
import _ol_layer_Vector_ from '../src/ol/layer/Vector.js';
import _ol_source_OSM_ from '../src/ol/source/OSM.js';
import _ol_source_Vector_ from '../src/ol/source/Vector.js';
var raster = new _ol_layer_Tile_({
source: new _ol_source_OSM_()
});
var wkt = 'POLYGON((10.689 -25.092, 34.595 ' +
'-20.170, 38.814 -35.639, 13.502 ' +
'-39.155, 10.689 -25.092))';
var format = new _ol_format_WKT_();
var feature = format.readFeature(wkt, {
dataProjection: 'EPSG:4326',
featureProjection: 'EPSG:3857'
});
var vector = new _ol_layer_Vector_({
source: new _ol_source_Vector_({
features: [feature]
})
});
var map = new _ol_Map_({
layers: [raster, vector],
target: 'map',
view: new _ol_View_({
center: [2952104.0199, -3277504.823],
zoom: 4
})
});