I've been using ggplot to plot my map using shapefile. The plot will change its size when I resize the window (I'm using Rshiny). I've tried to fix the height of the plot like:
plotOutput(outputId = "plot", height = "700px", width = "100%")
However, it will lead to distortion of map, and a scroll bar occurs which I don't want it. Is there any way to keep my map plotting without distortion, and can resize when the window size change?
Thank you so much!