add_marker: Add a single marker to the map

Description Usage Arguments Examples

View source: R/markers.R

Description

Add a single marker to the map

Usage

1
add_marker(map, lng, lat, popup = NULL)

Arguments

map

A mapboxer object.

lng

The longitude of the marker.

lat

The latitude of the marker.

popup

The popup text (HTML) that is displayed when you click on the marker.

Examples

1
2
3
4
5
6
7
8
lng <- -0.09
lat <- 51.5

map <- mapboxer() %>%
  set_view_state(lng, lat) %>%
  add_marker(lng, lat, popup = "You are here!")

if (interactive()) map

crazycapivara/mapboxer documentation built on Nov. 13, 2021, 3:22 a.m.