Skip to contents

Mapbox mode options. These options are specific to the mapbox mode.

Usage

tm_mapbox(pitch, bearing, control.position, control.collapse, zoom)

Arguments

pitch

The pitch angle

bearing

The bearing (rotation angle) of the map, in degrees

control.position

The position of the layer control box

control.collapse

Should the layer control box be collapsed?

zoom

The zoom level of the map

Value

a [tmap::tmap-element]

Examples

if (FALSE) { # \dontrun{
library(tmap)
library(tmap.mapgl)
# getting API: https://walker-data.com/mapgl/articles/getting-started.html
# check API envir var: Sys.getenv("MAPBOX_PUBLIC_TOKEN")

tmap_mode("mapbox")
tm_shape(World) +
  tm_polygons("HPI", fill.scale = tm_scale_intervals(values = "brewer.rd_yl_gn"))

tm_shape(NLD_dist) +
  tm_polygons("employment_rate",
    fill.scale = tm_scale_intervals(values = "scico.roma"),
    lwd = 0.1) +
tm_shape(NLD_muni) +
  tm_polygons(fill = NULL, lwd = 1) +
tm_mapbox(pitch = 60) +
tm_basemap("mapbox.dark")
} # }