We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://shiny.rstudio.com/gallery/superzip-example.html
Might be related to
https://blog.mapbox.com/deprecating-studio-classic-styles-d8892ac38cb4
The text was updated successfully, but these errors were encountered:
Yes, the map template is no longer available at the link referenced in the code. The fix is simple though:
Replace the following code in the server.R file:
output$map <- renderLeaflet({ leaflet() %>% addTiles( urlTemplate = "//{s}.tiles.mapbox.com/v3/jcheng.map-5ebohr46/{z}/{x}/{y}.png", attribution = 'Maps by <a href="http://www.mapbox.com/">Mapbox</a>' ) %>% setView(lng = -93.85, lat = 37.45, zoom = 4) })
With:
output$map <- renderLeaflet({ leaflet() %>% addTiles() %>% setView(lng = -93.85, lat = 37.45, zoom = 4) })
This fix should work.
Sorry, something went wrong.
No branches or pull requests
https://shiny.rstudio.com/gallery/superzip-example.html
Might be related to
https://blog.mapbox.com/deprecating-studio-classic-styles-d8892ac38cb4
The text was updated successfully, but these errors were encountered: