The R leaflet labels have changed in the latest release 2.0 and now have a solid white background without a border. Is there a way to print a label that's similar to the old style without installing an old version?
leaflet() %>% addTiles() %>%
addMarkers(
lng=-118.456554, lat=34.078039,
label='My label',
labelOptions = labelOptions(noHide = TRUE))
