#!/usr/bin/env python # coding: utf-8 # ## `BW` tiles for `geom_livemap()` # This theme is designed to be used for papers - it is a high contrast greyscale theme, also it draws roads and streets starting from zoom=13. # In[1]: from lets_plot import * LetsPlot.setup_html() # In[2]: from lets_plot import tilesets ggplot() + geom_livemap( tiles=tilesets.LETS_PLOT_BW, location=[-71.106385, 42.375922], zoom=13 )