Accept an object literal for static layer styling
This commit is contained in:
@@ -1,9 +1,6 @@
|
||||
import Feature from '../../../../src/ol/Feature.js';
|
||||
import Fill from '../../../../src/ol/style/Fill.js';
|
||||
import Map from '../../../../src/ol/Map.js';
|
||||
import Polygon from '../../../../src/ol/geom/Polygon.js';
|
||||
import Stroke from '../../../../src/ol/style/Stroke.js';
|
||||
import Style from '../../../../src/ol/style/Style.js';
|
||||
import VectorLayer from '../../../../src/ol/layer/Vector.js';
|
||||
import VectorSource from '../../../../src/ol/source/Vector.js';
|
||||
import View from '../../../../src/ol/View.js';
|
||||
@@ -37,15 +34,11 @@ const src = new VectorSource({
|
||||
const layer = new VectorLayer({
|
||||
renderBuffer: 0,
|
||||
source: src,
|
||||
style: new Style({
|
||||
stroke: new Stroke({
|
||||
color: [0, 0, 0, 1],
|
||||
width: 2,
|
||||
}),
|
||||
fill: new Fill({
|
||||
color: [255, 0, 0, 1],
|
||||
}),
|
||||
}),
|
||||
style: {
|
||||
'stroke-color': [0, 0, 0, 1],
|
||||
'stroke-width': 2,
|
||||
'fill-color': [255, 0, 0, 1],
|
||||
},
|
||||
});
|
||||
const view = new View({
|
||||
center: [-9.5, 78],
|
||||
|
||||
Reference in New Issue
Block a user