I'm really having fun playing with Mathematica's GeoListPlot however I'd like to see if there's a way to display a name next to the plot points.
I have a spreadsheet I can save as a CSV like the following:
Name, Lat, Long
Fred, 40, -80
Sally, 3, -40
I see that I can do the following:
GeoListPlot[{GeoPosition[{40, -80}]}, GeoLabels -> True]
But I can't get "Fred" up next to his location. Just display the points.
Once I figure out how to get the name displayed at the location, I'll try loading the who list in and do the GeoListPlot on the whole thing.
Any ideas? (THANKS!)