Stamen maps still misaligned at low zooms
- Dominant language
- R
- Stars
- 778
- Forks
- 234
- PR merge metrics
- No merged PRs in 30d
Description
I know this has cropped up in the past, but I'm still seeing some warping of the projection below zoom 10, depending on latitude it seems.
```r
library(tigris)
library(ggmap)
library(sf)
library(tidyverse)
counties <- counties(state = "WA", cb = TRUE)
basemap <- get_stamenmap(as.numeric(st_bbox(st_buffer(counties, .05))), z = 7, crop = TRUE, maptype = "toner-lite")
ggmap(basemap) +
geom_sf(data = counties,
fill = NA,
color = "red",
size = .25,
inherit.aes = FALSE)
```

Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.