Skip to contents

Given point location data, this function facilitates the creation of corresponding vector of character values to show in the popup for Leaflet markers.

Usage

create_popup_content(.data)

Arguments

.data

A data.frame containing information corresponding to each mapped point location.

Value

A vector of character values with length equal to the number of mapped point locations

Examples

if (FALSE) {
  df <- read_kb_experience()
  df <- get_kb_coordinates(.data = df)
  create_popup_content(.data = df)
}