mapboxer {mapboxer} | R Documentation |
Create a mapboxer widget
Description
Create a mapboxer widget
Usage
mapboxer(source = NULL, style = basemaps$Carto$dark_matter, ...,
width = NULL, height = NULL, element_id = NULL,
token = Sys.getenv("MAPBOX_API_TOKEN"))
Arguments
source |
A mapbox_source that is added to the map with the ID |
style |
The map's Mapbox style. |
... |
The properties of the map, see https://docs.mapbox.com/mapbox-gl-js/api/map/. |
width |
The width of the widget. |
height |
The height of the widget. |
element_id |
The unique ID of the widget. |
token |
A Mapbox API access token. Only needed if you want to use styles from Mapbox. |
Examples
map <- mapboxer(
center = c(-73.9165, 40.7114),
zoom = 10,
minZoom = 6,
pitch = 30,
bearing = 45
)
if (interactive()) map
[Package mapboxer version 0.4.0 Index]