Skip to content

Distortion Plotting Into a GeoAxis After Recent Update #147

@elipivo

Description

@elipivo

I just updated to Tyler v0.2.4 and GeoMakie v0.7.15 and have a new issue plotting into a GeoAxis.

Plotting into an Axis with

f = Figure()
usa_region = Rect2f(-85, 27, 20, 15)
ax = Axis(f[1,1])
m = Tyler.Map(usa_region; figure=f, axis=ax);
wait(m)
f

gives a nice map:

Image

There is some distortion plotting into a GeoAxis now with

f = Figure()
usa_region = Rect2f(-85, 27, 20, 15)
ax = GeoAxis(f[1,1],
    xgridvisible = false,
    xticksvisible = false,
    xticklabelsvisible = false,
    ygridvisible = false,
    yticksvisible = false,
    yticklabelsvisible = false,
    dest="+proj=webmerc +datum=WGS84",
)
m = Tyler.Map(usa_region; figure=f, axis=ax);
wait(m)
f
Image

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions