Distortion Plotting Into a GeoAxis After Recent Update
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:
<img width="582" height="438" alt="Image" src="https://github.com/user-attachments/assets/a77e3e81-6058-4c30-870a-fe0d0412a0b4" />
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
```
<img width="481" height="431" alt="Image" src="https://github.com/user-attachments/assets/85ff165b-9beb-4e5d-aaaa-94185af52748" />
4 条评论