Help! MakieLayout and annotations

It is good "
using AbstractPlotting

using Makie

using MakieLayout

scene, layout = layoutscene(resolution = (1800,900))

ax = layout[1,1] = LAxis(scene)

ax2 = layout[1,2] = LAxis(scene)

x = [1,2,3]

y = [10,11,12]

scatter!(ax2,x,y)

annotations!(ax2,[“first”,“second”,“third”],Point.(x,y),

textsize = 0.1)

scene"

But if you change "x = [1000,2000,3000]

There will be problems with the display of annotation!!