Hi and thanks for reading me. Im trying to use my own style using the mapboxer package in R but it doesn't work and I don't know why, the code im using is the following:
library(mapboxer)
style <-"https://api.mapbox.com/styles/v1/jorgehdez1998/ckviz4pms2thz14pi5zgu0iox.html?title=view&access_token=pk.eyJ1Ijoiam9yZ2VoZGV6MTk5OCIsImEiOiJja2o2dnNyeWUzOGx2MzJteTA1cGp3eHdqIn0.2tlIRcZ5xTzSRR0Pj57G2w&zoomwheel=true&fresh=true#4.5/45.55/3.71"
mapboxer(
access_token = "my-token",
style = style,
center = c(3.71, 45.55),
zoom = 4.5
)
Does anyone can help me?