Converts an `sf` object with POINT geometriers into JSON for plotting in an htmlwidget

widget_point(data, fill_colour = NULL, fill_opacity = NULL,
  lon = NULL, lat = NULL, legend = TRUE, json_legend = TRUE)

Arguments

data

sf object

fill_colour

string specifying column of sf to use for the fill colour, or a single value to apply to all rows of data

fill_opacity

string specifying column of sf to use for the fill opacity, or a single value to apply to all rows of data

lon

string specifying the column of data containing the longitude. Ignored if using an sf object

lat

string specifying the column of data containing the latitude. Ignored if using an sf object

legend

logical indicating if legend data will be returned

json_legend

logical indicating if the legend will be returned as json

Examples

l <- widget_point( data = widget_capitals, legend = FALSE )