ggplot piecharts on a ggmap: labels destroy the small plots
My ggmap on which I would like small piecharts with labels is generated with the code: p <- get_googlemap( "Poland", maptype = "roadmap", zoom = 6, color = "bw", crop = T, style = 'feature:all|element:labels|visibility:off' #'feature:administrative.country|element:labels|visibility:off' or 'feature:all|element:labels|visibility:off' ) %>% ggmap() + coord_cartesian() + scale_x_continuous(limits = c(14, 24.3), expand = c(0, 0)) + scale_y_continuous(limits = c(48.8, 55.5), expand = c(0, 0)) I am trying to plot my small ggplot piecharts on a ggmap following the answer R::ggplot2::geom_points: how