I just had a play with ggplot2 in R, with syntax like
geom_map(data=world, map=world
aes(x=long, y=lat, map_id=region),
color="white", fill="#7f7f7f", size=0.05, alpha=1/4)
That gives me the world map, is it possible to only get UK map as background map? Many thanks Peddie


map_uk <- map_data('world') %>% filter(region == 'UK')?