Related to #22
data("World", package = "tmap")
leaflet() |> addPolylines(data = World, weight = 4, opacity = 1)
leaflet() |> addGlPolylines(data = World |> st_cast("POLYGON") |> st_cast("LINESTRING"), weight = 1)
These maps look similar, but the weight has to 4 times smaller than with standard leaflet layers. Can this be made consistent?