Create map for a data.frame containing points.
plot_points(df, value, lon = "lon", lat = "lat", crs = 4326, at = NULL)
data.frame containing columns for longitude and latitude.
column in df
to be visualized.
column in df
containing longitude values.
column in df
containing latitude values.
crs code for the coordinate reference system (default is 4326).
the breakpoints used for visualisation.
if (FALSE) {
plot_points(Groningen, value = "amount")
}