View source: R/layers_text-layer.R
add_text_layer | R Documentation |
The TextLayer
renders text labels on the map using texture mapping.
add_text_layer( deckgl, data = NULL, properties = list(), ..., id = "text-layer" )
deckgl |
A deckgl widget object. |
data |
The url to fetch data from or a data object. |
properties |
A named list of properties with names corresponding to the properties defined
in the deckgl-api-reference
for the given layer class. The |
... |
Named arguments that will be added to the |
id |
The unique id of the layer. |
https://deck.gl/#/documentation/deckgl-api-reference/layers/text-layer
## @knitr text-layer data("bart_stations") deck <- deckgl(zoom = 10, pitch = 35) %>% add_text_layer( data = bart_stations, pickable = TRUE, getPosition = ~lng + lat, getText = ~name, getSize = 15, getAngle = 0, getTextAnchor = "middle", getAlignmentBaseline = "center", tooltip = "{{name}}<br/>{{address}}" ) %>% add_basemap(use_carto_style("voyager")) if (interactive()) deck
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.