We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28c00e0 commit ce1dcc3Copy full SHA for ce1dcc3
src/openlayers/mapping/WebMap.js
@@ -2560,13 +2560,14 @@ export class WebMap extends Observable {
2560
backgroundFill: new FillStyle({ color: backgroundFill }),
2561
padding: [3, 3, 3, 3],
2562
offsetX: layerInfo.featureType === 'POINT' ? offsetX : 0,
2563
- offsetY: layerInfo.featureType === 'POINT' ? offsetY : 0
+ offsetY: layerInfo.featureType === 'POINT' ? offsetY : 0,
2564
+ maxAngle: 0
2565
};
2566
if (outlineWidth > 0) {
- option.stroke = new StrokeStyle({
2567
- color: outlineColor,
2568
- width: outlineWidth
2569
- });
+ option.stroke = new StrokeStyle({
+ color: outlineColor,
+ width: outlineWidth
2570
+ });
2571
}
2572
2573
return new Style({
0 commit comments