The relevant libraries are: maps, ggplot2, ggmap, and maptools. Make sure you install them.
The Problem
Let's take a fairly simple use case: We have a few points on the globe (say Cities) that we want to mark on the map.The ideal and natural choice for this would be David Kahle's ggmap package. Except that there is a catch. ggmap doesn't handle extreme latitudes very well. If you are really keen on using ggmap, you can do it by following the technique outlined in this StackOverflow response.
If ggmap is not mandatory, there are simpler ways to do the same.
First, let's set up our problem. We'll take 5 cities and plot them on a world map.
Method 1: Using the maps Package
This results in:
Which might be enough. However, if you take the few extra steps to plot using ggplot, you will have much greater control for what you want to do subsequently.