Plot the output of search_legal()
or search_coord()
or similar
dataframe onto an interactive Leaflet map
Arguments
- x
Output from
search_legal()
orsearch_coord()
or similar dataframe- map.type
Base map: see https://leaflet-extras.github.io/leaflet-providers/preview/ for available options
Details
Data frame must include the following three column names:
legal
- A character that specifies the legal land description (NE-11-33-29W1)long
- A numeric specifying the longitude in decimal degrees (-97.6)lat
- A numeric specifying the latitude in decimal degrees (49.1)
Examples
search1 <- search_legal(x = c("NE-11-33-29W1", "SW-20-2-1W1"))
map_quarter(x = search1)
search2 <- search_coord(long = c(-101.4656, -99.99768),
lat = c(51.81913, 49.928926))
map_quarter(x = search2)