I create circle geometries server side on a PostGIS database like this.
UPDATE element
SET geo = ST_Buffer(
ST_MakePoint(6.1043443253471, 42.3150676015829), 6, 'quad_segs=8')
WHERE id = 1;
I then fetch the WKT to be sent to openlayers on the client browser.
SELECT ST_AsText(geo) from element where id = 1
The problem is that the circle is displayed as an ellipsis on map like here
It is probably related to projection, but I don't understand how I could create this circle server side so that it appears as a real circle on map.
Can you help me on this? Thanks in advance.