I want to draw a surface on GeoAxis and keep the gridlines in the axis. Unfortunately after passing a certain value (100 i think) the surface overdraws the gridlines, which looks quite bad and not very intended. Is there a way to make the Gridlines always visible?
using GLMakie
using GeoMakie
xax = 1:10
yax = 1:15
fig = Figure()
ax = GeoAxis(fig[1,1])
data = [x < 5 ? 10000 * cos(x) * sin(y) : -100 * cos(x) * sin(y) for x in xax, y in yax]
surface!(ax, xax, yax, data)
save("output.png", fig)