Create bubble plot in R using satellite map

前端 未结 1 332
遇见更好的自我
遇见更好的自我 2021-01-28 13:42

I already created a bubble plot using the following code:

library(ggplot2)

library(sp)

library(raster)

library(maps)

library(mapdata)

library(maptools)

lib         


        
1条回答
  •  遥遥无期
    2021-01-28 14:12

    I am not sure if you still check SO. But, I leave one approach for you. You can play with the values in zoom to identify the best zoom for your purpose. The CRAN manual of ggmap offers you more examples. Please have a look.

    map <- get_map(location = 'netherlands', zoom = 7,
                   source = 'google',
                   maptype = 'satellite')
    
    ggmap(map)
    

    0 讨论(0)
提交回复
热议问题