I have this shapefile which you can download from here.
I'm trying to create a mapview
map with:
library(sf)
library(mapview)
subs <- read_sf("cheyenne-kimball-all-owners.shp")
m <- mapview(subs, zcol = "acres")
Only one polygon is being displayed instead of many. What is wrong?