is an option for GeoListPlot and GeoRegionValuePlot that specifies whether and how to add labels to the locations in the first argument.
GeoLabels
is an option for GeoListPlot and GeoRegionValuePlot that specifies whether and how to add labels to the locations in the first argument.
Details
- The following settings can be used:
-
True add text labels to graphical output False add no labels func apply func to each of the names of the location - The arguments supplied to functions in GeoLabels are graphicsi, regi, and EntityValue[regi,"Position"], where graphicsi is the Graphics or GeoGraphics object that marks regi, by default either a Point or a Polygon.
- In GeoRegionValuePlot, there is a fourth argument supplied to functions in GeoLabels, which is the value vali associated to regi.
Examples
open all close allBasic Examples (2)
Add labels to a set of cities:
GeoListPlot[{
Entity["City", {"Atlanta", "Georgia", "UnitedStates"}],
Entity["City", {"Savannah", "Georgia", "UnitedStates"}],
Entity["City", {"Naples", "Florida", "UnitedStates"}]
}, GeoLabels -> True]Add labels in a GeoRegionValuePlot:
GeoRegionValuePlot[{
Entity["Country", "Albania"] -> 2,
Entity["Country", "Germany"] -> 3,
Entity["Country", "Namibia"] -> 8,
Entity["City", {"Atlanta", "Georgia", "UnitedStates"}] -> 1, Entity["City", {"Savannah", "Georgia", "UnitedStates"}] -> 1.2
}, GeoLabels -> True]Scope (2)
GeoListPlot[{
Entity["City", {"Atlanta", "Georgia", "UnitedStates"}],
Entity["City", {"Savannah", "Georgia", "UnitedStates"}],
Entity["City", {"Naples", "Florida", "UnitedStates"}]
}, GeoLabels -> (Tooltip[#1, #2]&)]Use tooltips to show the names, positions, and values of each location:
Column[{GeoRegionValuePlot[["South America"] -> "Population", GeoLabels -> (Annotation[#1, Column[{#2, #3, #4}], "Mouse"]&)], Dynamic[MouseAnnotation["Hover over a country"]]}]Properties & Relations (1)
Neat Examples (1)
Use tooltips to show multiple pieces of information:
GeoRegionValuePlot[{Entity["Country", "Bulgaria"],
Entity["Country", "Turkey"],
Entity["Country", "Greece"],
Entity["Country", "Romania"]} -> "Population", GeoLabels -> (Tooltip[#1, Row[{#2, ": ", #4, ", ", EntityValue[#2, "ReligionsFractions"]}]]&)]See Also
Related Guides
Related Links
History
Text
Wolfram Research (2014), GeoLabels, Wolfram Language function, https://reference.wolfram.com/language/ref/GeoLabels.html.
CMS
Wolfram Language. 2014. "GeoLabels." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/GeoLabels.html.
APA
Wolfram Language. (2014). GeoLabels. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/GeoLabels.html
BibTeX
@misc{reference.wolfram_2026_geolabels, author="Wolfram Research", title="{GeoLabels}", year="2014", howpublished="\url{https://reference.wolfram.com/language/ref/GeoLabels.html}", note=[Accessed: 15-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_geolabels, organization={Wolfram Research}, title={GeoLabels}, year={2014}, url={https://reference.wolfram.com/language/ref/GeoLabels.html}, note=[Accessed: 15-June-2026]}