The right image is full zoom in circle whose outline seems distortedI have drawn a circle geometry with Openlayers and the circle is displayed in map . The circle is zoomed when i zoom in/out but on zoom out the circle looks distorted and not perfectly circle after two zoom outs.
I have drawn the circle geometry as per below and update its coordinates dynamic values
var circleFeature = new ol.Feature
({
geometry: new ol.geom.Circle([0, 0], 0.4)
});
circleStyle = new ol.style.Style({
stroke: new ol.style.Stroke({
color: '#FFCC00',
width: 2,
lineDash: [0, 0]
}),
zIndex: 3,
});
circleFeature.setGeometry(new ol.geom.Circle([100, 110], 0.4));
As in below image u can see the circle (or any geometry) to be distored or pixelated on zoom out. On full zoom in the stroke outline seems to have some gaps in stroke color fill. I expect my geometries as in eg: https://openlayers.org/en/latest/examples/draw-shapes.html. But in my case it not working so