dkahle / dkahle/ggmap

Stamen maps still misaligned at low zooms

Open
#298 0 comments 0 reactions 0 assignees View on GitHub
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)

```

![image](https://user-images.githubusercontent.com/32683657/78405099-9bff8a00-75b4-11ea-8fc2-e471f3ea2ed9.png)

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.