hi and thanks for reading me. Im working on a map with some points marked and I want to show by default an icon using add_layer, is that possible? I use the following code and is not actually working:
library(mapboxer)
tibble(
lat = 19,
lng = -99) |>
as_mapbox_source() |>
mapboxer() |>
add_layer(
list(id = "circl1e",
type = "symbol",
source = "tibble",
layout = list(
icon = "globe")))
hi and thanks for reading me. Im working on a map with some points marked and I want to show by default an icon using add_layer, is that possible? I use the following code and is not actually working: