We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
axis.limits
Consider the following:
fig = Figure(size=(1500, 1500)) settings = "+proj=leac +lat_1=45.0 +ellps=sphere " ga = GeoAxis( fig[1, 1]; dest=settings, title=settings, ) lines!(ga, GeoMakie.coastlines()) ylims!(ga, 0, 90) fig
The screen limits are technically correct, but the ticks range further out which is not great.
The text was updated successfully, but these errors were encountered:
The relevant code is here:
GeoMakie.jl/src/geoaxis.jl
Lines 579 to 603 in b7c0fdd
basically, the limits being used are finallimits which works great for zooming, but doesn't take the axis's set limits into account.
finallimits
limits
Sorry, something went wrong.
No branches or pull requests
Consider the following:
The screen limits are technically correct, but the ticks range further out which is not great.
The text was updated successfully, but these errors were encountered: