GeoMakie GeoAxis Subticks?

If i run this code, i get wrong axis labels.

using GeoMakie
set_theme!(theme_latexfonts())

fig = Figure(fontsize=12)
lonlims = (10,11)
latlims =  (49,51)
ax = GeoAxis(fig[1, 1], 
    limits=(lonlims, latlims))
fig

Q1: how to fix this?
Q2: how can i add subticks, with correct labels (depending on the projection) ?

Thanks!

Thanks for reminding me, I just (5 seconds ago :D) pushed a new version that should fix this…

I don’t think geoaxis supports minor ticks yet, but I could probably look into it. Shouldn’t be too hard.

that would be great!
thank you.