Web page using R Markdown that features a map created with Leaflet
library(leaflet)
dataPoland <- read.csv(file = "dataPoland.csv", header = TRUE, sep = ";")
leaflet() %>%
addTiles() %>%
addCircles(lng = dataPoland$Longitude, lat = dataPoland$Latitude,
label = paste(dataPoland$City, ", population: ", dataPoland$Population, sep = ""),
weight = 1, radius = sqrt(dataPoland$Population)*30, color = "red")
.