knitr::opts_chunk$set(echo = TRUE)
library(ggmap) map <- get_stamenmap(bbox=c(left = -80.75, bottom =37, right =-80.25, top = 37.5), zoom=10,maptype = "watercolor", color = c("color")) ggmap(map) map <- get_stamenmap(bbox=c(left = -80.75, bottom =37, right =-80.25, top = 37.5), zoom=10,maptype = "terrain", color = c("color")) ggmap(map) map <- get_stamenmap(bbox=c(left = -80.75, bottom =37, right =-80.25, top = 37.5), zoom=10,maptype = "toner", color = c("color")) ggmap(map) # options for different map types exists.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.