from lets_plot import *
LetsPlot.setup_html()
from lets_plot.geo_data import *
na=regions_country(['usa', 'canada'])
na
na_boundaries=na.boundaries(1)
ggplot() + geom_polygon(aes(fill='found name'), na_boundaries)
countries=regions_country().boundaries(1)
countries
ggplot() + geom_polygon(aes(fill='found name'), countries) + ggsize(900, 400) + theme(legend_position='none')