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!