Only center points that need centering
This commit is contained in:
parent
62f7b25fb5
commit
c87ea083a0
@ -308,9 +308,9 @@ export function buildMarker(id: string, data: Marker): LiveAtlasPointMarker {
|
|||||||
id,
|
id,
|
||||||
type: LiveAtlasMarkerType.POINT,
|
type: LiveAtlasMarkerType.POINT,
|
||||||
location: {
|
location: {
|
||||||
x: !isNaN(data.x) ? data.x + 0.5 : 0,
|
x: !isNaN(data.x) ? Number.isInteger(data.x) ? data.x + 0.5 : data.x : 0,
|
||||||
y: !isNaN(data.y) ? data.y + 0.5 : 0,
|
y: !isNaN(data.y) ? Number.isInteger(data.y) ? data.y + 0.5 : data.y : 0,
|
||||||
z: !isNaN(data.z) ? data.z + 0.5 : 0,
|
z: !isNaN(data.z) ? Number.isInteger(data.z) ? data.z + 0.5 : data.z : 0,
|
||||||
},
|
},
|
||||||
dimensions: (dimensions || [16, 16]) as PointTuple,
|
dimensions: (dimensions || [16, 16]) as PointTuple,
|
||||||
icon: data.icon || "default",
|
icon: data.icon || "default",
|
||||||
|
Loading…
Reference in New Issue
Block a user