Skip to content
Snippets Groups Projects
Commit 09002888 authored by Miłosz Grocholewski's avatar Miłosz Grocholewski
Browse files

Merge branch 'feat/MIN-43-ovals-position' into 'development'

fix(vector-map): fix ovals position

Closes MIN-43

See merge request !277
parents 7c77b546 c0dbc160
No related branches found
No related tags found
1 merge request!277fix(vector-map): fix ovals position
Pipeline #96844 passed
......@@ -166,8 +166,8 @@ export default class Layer {
): Array<Feature<Polygon>> => {
return this.ovals.map(oval => {
const coords = getEllipseCoords({
x: oval.x,
y: oval.y,
x: oval.x + oval.width / 2,
y: oval.y + oval.height / 2,
height: oval.height,
width: oval.width,
pointToProjection,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment