Plot a map using extend of a spatial object
Uses get_map() to query map services like Google Maps for a region centered around the spatial object provided. Then calls ggmap() to plot the map.
gmap(data, ...)
data |
A Spatial* object. |
... |
Arguments passed on to get_map(). |
This function requires the ggmap
package.
a ggplot object
## Not run: # Load the Gorilla data data(gorillas, package = "inlabru") # Create a base map centered around the nests and plot the boundary as well # as the nests ggplot() + gg(gorillas$boundary) + gg(gorillas$nests, color = "white", size = 0.5) if (requireNamespace("ggmap", quietly = TRUE)) { gmap(gorillas$nests, maptype = "satellite") + gm(gorillas$boundary) + gm(gorillas$nests, color = "white", size = 0.5) } ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.