我正在努力在Google map 上覆盖邻里边界。我正在尝试遵循code。我的版本如下。您看到明显有问题吗?

#I set the working directory just before this...
chicago = readOGR(dsn=".", layer="CommAreas")
overlay <- spTransform(chicago,CRS("+proj=longlat +datum=WGS84"))
overlay <- fortify(overlay)
location <- unlist(geocode('4135 S Morgan St, Chicago, IL 60609'))+c(0,.02)
ggmap(get_map(location=location,zoom = 10, maptype = "terrain", source = "google",col="bw")) +
  geom_polygon(aes(x=long, y=lat, group=group), data=overlay, alpha=0)+
  geom_path(color="red")

任何见解将不胜感激。感谢您的帮助和耐心等待。

最佳答案

这对我有用:

library(rgdal)
library(ggmap)

# download shapefile from:
#   https://data.cityofchicago.org/api/geospatial/cauq-8yn6?method=export&format=Shapefile

# setwd accordingly

overlay <- readOGR(".", "CommAreas")
overlay <- spTransform(overlay, CRS("+proj=longlat +datum=WGS84"))
overlay <- fortify(overlay, region="COMMUNITY") # it works w/o this, but I figure you eventually want community names

location <- unlist(geocode('4135 S Morgan St, Chicago, IL 60609'))+c(0,.02)

gmap <- get_map(location=location, zoom = 10, maptype = "terrain", source = "google", col="bw")

gg <- ggmap(gmap)
gg <- gg + geom_polygon(data=overlay, aes(x=long, y=lat, group=group), color="red", alpha=0)
gg <- gg + coord_map()
gg <- gg + theme_bw()
gg

如果环境中发生任何问题,您可能想重新启动R session ,但是您可以在geom_polygon调用中设置线条颜色和alpha 0填充(就像我一样)。

您也可以这样做:
gg <- gg + geom_map(map=overlay, data=overlay,
                    aes(map_id=id, x=long, y=lat, group=group), color="red", alpha=0)

而不是geom_polygon,而ojit_code则使您能够在一次调用与两次调用(如果您基于其他值进行着色)中绘制 map 并执行美观的映射。

10-08 07:34