Skip to contents

Map - polygons - Create leaflet map from shapefile, in shiny app

Usage

map_shapes_leaflet(shapes, color = "green", popup = NULL)

Arguments

shapes

like from shapes_counties_from_countyfips(fips_counties_from_state_abbrev("DE"))

color

passed to leaflet::addPolygons()

popup

passed to leaflet::addPolygons()

Value

html widget from leaflet::leaflet()

Examples

out = testoutput_ejamit_10pts_1miles
out$results_bysite = out$results_bysite[1:2,]
map_shapes_leaflet(
  ejam2shapefile(out, save=F),
  popup = popup_from_ejscreen(out$results_bysite)
)