-
-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
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:

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

Metadata
Metadata
Assignees
Labels
No labels